.aiers-page {
  width: 100%;
  min-width: 320px;
  overflow-x: clip;
  color: #121212;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
}

.aiers-page .aiers-order-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.aiers-page .aiers-order-sheet[hidden] {
  display: none;
}

.aiers-page .aiers-order-sheet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.46);
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.aiers-page .aiers-order-sheet.is-open .aiers-order-sheet__scrim {
  opacity: 1;
}

.aiers-page .aiers-order-sheet__panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  outline: none;
  will-change: transform, opacity;
}

.aiers-page .aiers-order-sheet__head {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 22px 4px;
}

.aiers-page .aiers-order-sheet__head h3 {
  margin: 0;
  color: #121212;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.aiers-page .aiers-order-sheet__head p {
  margin: 5px 0 0;
  color: #656565;
  font-size: 13.5px;
  font-weight: 500;
}

.aiers-page .aiers-order-sheet__grabber {
  display: none;
}

.aiers-page .aiers-order-sheet__close {
  position: absolute;
  top: 18px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.32, 0.72, 0, 1), color 0.15s cubic-bezier(0.32, 0.72, 0, 1);
}

.aiers-page .aiers-order-sheet__close:hover {
  background: #f5f5f5;
  color: #121212;
}

.aiers-page .aiers-order-sheet__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px 4px;
  overflow-y: auto;
}

.aiers-page .aiers-order-sheet__opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 17px 16px;
  border: 1.5px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s cubic-bezier(0.32, 0.72, 0, 1), background 0.18s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.18s cubic-bezier(0.32, 0.72, 0, 1);
}

.aiers-page .aiers-order-sheet__opt:hover {
  border-color: #ffb39f;
}

.aiers-page .aiers-order-sheet__opt[aria-checked="true"] {
  border-color: #ff6b4a;
  background: #fff4f1;
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.12);
}

.aiers-page .aiers-order-sheet__num {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border: 1.5px solid #e6e6e6;
  border-radius: 50%;
  color: #888;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.18s cubic-bezier(0.32, 0.72, 0, 1), background 0.18s cubic-bezier(0.32, 0.72, 0, 1), color 0.18s cubic-bezier(0.32, 0.72, 0, 1);
}

.aiers-page .aiers-order-sheet__opt[aria-checked="true"] .aiers-order-sheet__num {
  border-color: #ff6b4a;
  background: #ff6b4a;
  color: #fff;
}

.aiers-page .aiers-order-sheet__check {
  display: none;
  width: 13px;
  height: 13px;
}

.aiers-page .aiers-order-sheet__opt[aria-checked="true"] .aiers-order-sheet__num-label {
  display: none;
}

.aiers-page .aiers-order-sheet__opt[aria-checked="true"] .aiers-order-sheet__check {
  display: block;
}

.aiers-page .aiers-order-sheet__body {
  flex: 1 1 auto;
  min-width: 0;
}

.aiers-page .aiers-order-sheet__schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.aiers-page .aiers-order-sheet__date {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.aiers-page .aiers-order-sheet__sessions {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 7px;
  background: #f4f4f4;
  color: #656565;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.aiers-page .aiers-order-sheet__opt[aria-checked="true"] .aiers-order-sheet__sessions {
  background: #ffe1d8;
  color: #d94825;
}

.aiers-page .aiers-order-sheet__desc {
  display: block;
  margin-top: 6px;
  color: #656565;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}

.aiers-page .aiers-order-sheet__foot {
  flex: 0 0 auto;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
}

.aiers-page .aiers-order-sheet__submit {
  display: block;
  width: 100%;
  padding: 17px;
  border: 0;
  border-radius: 12px;
  background: #ff6b4a;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.32, 0.72, 0, 1), transform 0.15s cubic-bezier(0.32, 0.72, 0, 1);
}

.aiers-page .aiers-order-sheet__submit:hover {
  background: #e85d3d;
}

.aiers-page .aiers-order-sheet__submit:active {
  transform: translateY(1px);
}

@media (min-width: 861px) {
  .aiers-page .aiers-order-sheet {
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .aiers-page .aiers-order-sheet__panel {
    position: relative;
    width: min(440px, 100%);
    max-height: min(86vh, 720px);
    border-radius: 22px;
    box-shadow: 0 24px 70px -12px rgba(18, 18, 18, 0.28), 0 8px 24px -8px rgba(18, 18, 18, 0.18);
    opacity: 0;
    transform: scale(0.95) translateY(8px);
    transition: opacity 0.26s cubic-bezier(0.32, 0.72, 0, 1), transform 0.26s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .aiers-page .aiers-order-sheet.is-open .aiers-order-sheet__panel {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 860px) {
  .aiers-page .aiers-info__list {
    height: auto;
    min-height: 232px;
    justify-content: flex-start;
  }

  .aiers-page .aiers-info__item,
  .aiers-page .aiers-info__item:first-child,
  .aiers-page .aiers-info__item:last-child {
    height: auto;
    min-height: 32px;
    padding: 8px 0;
  }

  .aiers-page .aiers-info__item--schedule,
  .aiers-page .aiers-info__item--schedule:first-child {
    align-items: flex-start;
    min-height: 104px;
  }

  .aiers-page .aiers-info__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .aiers-page .aiers-info__item strong,
  .aiers-page .aiers-info__schedule-options {
    height: auto;
    min-height: 0;
    line-height: 1.35;
  }

  .aiers-page .aiers-info__schedule-options {
    gap: 5px;
    max-width: 236px;
  }

  .aiers-page .aiers-info__schedule-option {
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
  }

  .aiers-page .aiers-info__schedule-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
  }

  .aiers-page .aiers-info__schedule-option i {
    padding: 3px 6px;
    font-size: 10px;
  }

  .aiers-page .aiers-order-sheet__panel {
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 88%;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(18, 18, 18, 0.14);
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .aiers-page .aiers-order-sheet.is-open .aiers-order-sheet__panel {
    transform: translateY(0);
  }

  .aiers-page .aiers-order-sheet__grabber {
    display: block;
    position: absolute;
    top: 9px;
    left: 50%;
    width: 40px;
    height: 4px;
    border-radius: 99px;
    background: #dedede;
    transform: translateX(-50%);
  }

  .aiers-page .aiers-order-sheet__head {
    padding-top: 26px;
  }

  .aiers-page .aiers-order-sheet__opt {
    gap: 12px;
    padding: 16px 14px;
  }

  .aiers-page .aiers-order-sheet__schedule {
    gap: 6px;
  }

  .aiers-page .aiers-order-sheet__date {
    font-size: 14px;
  }

  .aiers-page .aiers-order-sheet__sessions {
    padding: 3px 6px;
    font-size: 11px;
  }
}

@media (max-width: 374px) {
  .aiers-page .aiers-info__schedule-options {
    max-width: 218px;
  }

  .aiers-page .aiers-info__schedule-option {
    grid-template-columns: minmax(0, 158px) auto;
  }

  .aiers-page .aiers-info__schedule-text {
    width: 158px;
    grid-template-columns: 52px 1fr;
    font-size: 11px;
  }

  .aiers-page .aiers-info__schedule-option i,
  .aiers-page .aiers-order-sheet__sessions {
    font-size: 10px;
  }

  .aiers-page .aiers-order-sheet__opt {
    gap: 10px;
    padding: 15px 12px;
  }

  .aiers-page .aiers-order-sheet__date {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-order-sheet__scrim,
  .aiers-page .aiers-order-sheet__panel {
    transition-duration: 0.01ms;
  }
}

.aiers-page * {
  box-sizing: border-box;
}

.aiers-page p,
.aiers-page h1,
.aiers-page h2,
.aiers-page h3 {
  margin: 0;
}

.aiers-page .aiers-main {
  background: #fff;
}

.aiers-page .aiers-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #c7eb68;
}

.aiers-page .aiers-hero__visual {
  position: absolute;
  top: 0;
  left: calc(50% - 52px);
  width: 1090px;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: url("./figma/hero/hero-3dchar-desktop-poster.webp") center / cover no-repeat;
}

.aiers-page .aiers-hero__visual img,
.aiers-page .aiers-hero__visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-hero__visual .aiers-hero__video--mobile {
  display: none;
}

.aiers-page .aiers-hero__wash {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1380px, 72vw);
  height: 600px;
  background: linear-gradient(
    268.9deg,
    rgba(255, 107, 74, 0) 5.9%,
    rgba(255, 107, 74, 0.9) 22.2%,
    #ff6b4a 31%
  );
}

.aiers-page .aiers-hero__noise {
  position: absolute;
  top: 70px;
  left: 320px;
  width: 1980px;
  height: 1138px;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background: url("./figma/hero/noise.webp") center / cover no-repeat;
  transform: rotate(-90deg);
  transform-origin: 569px 569px;
  pointer-events: none;
}

.aiers-page .aiers-hero__copy {
  position: absolute;
  top: 70px;
  left: calc(50% - 640px);
  width: 563px;
  height: 445px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  z-index: 2;
}

.aiers-page .aiers-hero__heading-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.aiers-page .aiers-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.aiers-page .aiers-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ffc8b7;
  background: #fff;
  color: #ff6b4a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.6px;
}

.aiers-page .aiers-hero__eyebrow {
  color: #ffef96;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-hero h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.aiers-page .aiers-hero h1 span {
  color: #ffef96;
}

.aiers-page .aiers-hero__description {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.aiers-page .aiers-info {
  min-height: 558px;
  padding: 40px 0 60px;
  background: #fff;
}

.aiers-page .aiers-info__inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.aiers-page .aiers-info h2 {
  margin: 0 0 16px;
  color: #121212;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-info__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 304px;
  margin: 0 0 32px;
  padding: 20px 24px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fafafa;
  list-style: none;
}

.aiers-page .aiers-info__item {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #e6e6e6;
  color: #121212;
}

.aiers-page .aiers-info__item:first-child {
  min-height: 36px;
  align-items: flex-start;
}

.aiers-page .aiers-info__item:last-child {
  min-height: 36px;
  align-items: flex-end;
  border-bottom: 0;
}

.aiers-page .aiers-info__label {
  display: inline-flex;
  align-items: center;
  flex: 0 0 155px;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 19.5px;
}

.aiers-page .aiers-info__label img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.aiers-page .aiers-info__item strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 19.5px;
}

.aiers-page .aiers-info__item em,
.aiers-page .aiers-info__remaining em {
  color: #ff6b4a;
  font-style: normal;
}

.aiers-page .aiers-info__item s {
  text-decoration-thickness: 1px;
}

.aiers-page .aiers-info__cta {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.aiers-page .aiers-info__remaining {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  height: 70px;
  padding: 20px 24px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fafafa;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-info__remaining strong,
.aiers-page .aiers-info__remaining em {
  font-weight: 700;
}

.aiers-page .aiers-info__remaining time {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-info__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 628px;
  height: 70px;
  padding: 16px 32px;
  border-radius: 8px;
  background: #ff6b4a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-info__mo {
  display: none;
}

.aiers-page .aiers-price {
  min-height: 1098px;
  padding: 80px 0 120px;
  background: #fff;
}

.aiers-page .aiers-price__inner {
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-price__lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 451px;
  height: 150px;
  white-space: nowrap;
}

.aiers-page .aiers-price__lead h2 {
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-price__lead h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-price__lead p {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-price__mo-break,
.aiers-page .aiers-price__trend--mobile,
.aiers-page .aiers-price__baseline--mobile,
.aiers-page .aiers-price__stem--mobile,
.aiers-page .aiers-price__dot--mobile {
  display: none;
}

.aiers-page .aiers-price__chart {
  position: relative;
  width: 1280px;
  height: 356px;
  margin-top: 64px;
}

.aiers-page .aiers-price__trend {
  position: absolute;
  top: 0;
  left: 176px;
  width: 958px;
  height: 230px;
  pointer-events: none;
}

.aiers-page .aiers-price__baseline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1280px;
  height: 1px;
  pointer-events: none;
}

.aiers-page .aiers-price__discount {
  position: absolute;
  top: 34px;
  left: 45px;
  width: 147px;
  height: 140px;
  z-index: 2;
}

.aiers-page .aiers-price__discount span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 103px;
  height: 56px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ff6b4a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.48px;
  white-space: nowrap;
}

.aiers-page .aiers-price__stem {
  position: absolute;
  top: 24px;
  left: 68px;
  width: 1px;
  height: 114px;
}

.aiers-page .aiers-price__dot {
  position: absolute;
  top: 120px;
  left: 57px;
  width: 20px;
  height: 20px;
}

.aiers-page .aiers-price__bars {
  position: absolute;
  top: 66px;
  left: 64px;
  display: flex;
  align-items: flex-end;
  gap: 80px;
  width: 1152px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aiers-page .aiers-price__bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 228px;
  text-align: center;
}

.aiers-page .aiers-price__bar {
  display: block;
  width: 120px;
  margin-bottom: 17px;
  border-radius: 12px 12px 0 0;
  background: #d8d8d8;
}

.aiers-page .aiers-price__bar-item--early .aiers-price__bar {
  height: 89px;
  background: #ff6b4a;
}

.aiers-page .aiers-price__bar-item--first .aiers-price__bar {
  height: 136px;
}

.aiers-page .aiers-price__bar-item--closed .aiers-price__bar {
  height: 218px;
}

.aiers-page .aiers-price__bar-item--second .aiers-price__bar {
  height: 290px;
}

.aiers-page .aiers-price__bar-item strong,
.aiers-page .aiers-price__bar-item em {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-price__bar-item strong {
  color: #121212;
  font-weight: 500;
}

.aiers-page .aiers-price__bar-item em {
  color: rgba(0, 0, 0, 0.7);
  font-style: normal;
  font-weight: 500;
}

.aiers-page .aiers-price__bar-item--early strong,
.aiers-page .aiers-price__bar-item--early em {
  font-weight: 700;
}

.aiers-page .aiers-price__bar-item--early em {
  color: #ff6b4a;
}

.aiers-page .aiers-price__card {
  width: 1280px;
  margin-top: 40px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fafafa;
}

.aiers-page .aiers-price__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.aiers-page .aiers-price__card-head {
  position: relative;
  width: 1206px;
  height: 81px;
}

.aiers-page .aiers-price__card-title {
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 365px;
}

.aiers-page .aiers-price__card-title h3 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.56px;
}

.aiers-page .aiers-price__card-title p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.aiers-page .aiers-price__amount {
  position: absolute;
  top: 9px;
  right: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.aiers-page .aiers-price__amount s {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-price__amount strong {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-price__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1240px;
  height: 70px;
  padding: 20px 12px;
  border-radius: 8px;
  background: #ff6b4a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-mobile-break {
  display: none;
}

.aiers-page .aiers-cheapest {
  padding: 120px 0;
  background: #fafafa;
  color: #121212;
}

.aiers-page .aiers-cheapest > .aiers-wrap {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 16px;
}

.aiers-page .aiers-cheapest__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.aiers-page .aiers-cheapest__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 451px;
  min-height: 150px;
  margin-bottom: 24px;
}

.aiers-page .aiers-cheapest__copy h2,
.aiers-page .aiers-cheapest__copy p,
.aiers-page .aiers-cheapest__bars p,
.aiers-page .aiers-cheapest__bars strong,
.aiers-page .aiers-cheapest__offer h3,
.aiers-page .aiers-cheapest__offer p {
  margin: 0;
}

.aiers-page .aiers-cheapest__copy h2 {
  color: #121212;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-cheapest__copy h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-cheapest__copy p {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__chart {
  position: relative;
  width: 1280px;
  max-width: 100%;
  height: 433px;
}

.aiers-page .aiers-cheapest__trend {
  position: absolute;
  display: none;
  pointer-events: none;
}

.aiers-page .aiers-cheapest__trend--desktop {
  z-index: 1;
  display: block;
  left: 176px;
  top: 224.59px;
  width: 959.019px;
  height: 11.547px;
  max-width: none;
  opacity: 0.7;
  filter: brightness(0);
  transform: rotate(-13.89deg);
  transform-origin: left center;
}

.aiers-page .aiers-cheapest__trend--mobile {
  display: none;
}

.aiers-page .aiers-cheapest__baseline {
  position: absolute;
  pointer-events: none;
}

.aiers-page .aiers-cheapest__baseline--desktop {
  left: 0;
  top: 356px;
  width: 1280px;
  max-width: 100%;
  height: 1px;
}

.aiers-page .aiers-cheapest__baseline--mobile {
  display: none;
}

.aiers-page .aiers-cheapest__discount {
  position: absolute;
  left: 109px;
  top: 100px;
  z-index: 2;
  display: block;
  width: 133px;
  height: 140.36px;
}

.aiers-page .aiers-cheapest__discount span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 104px;
  height: 56px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #ff6b4a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-cheapest__discount i {
  position: absolute;
  left: 57px;
  top: 24px;
  z-index: 1;
  display: block;
  width: 20px;
  height: 116.36px;
}

.aiers-page .aiers-cheapest__discount i::before {
  position: absolute;
  left: 9px;
  top: 0;
  width: 2px;
  height: 114px;
  background: #ff6b4a;
  content: "";
}

.aiers-page .aiers-cheapest__discount i::after {
  position: absolute;
  left: 0;
  top: 96.36px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b4a;
  content: "";
}

.aiers-page .aiers-cheapest__bars {
  position: absolute;
  left: 64px;
  top: 66px;
  display: flex;
  align-items: flex-end;
  gap: 80px;
}

.aiers-page .aiers-cheapest__bars article {
  display: flex;
  width: 228px;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  text-align: center;
}

.aiers-page .aiers-cheapest__bars i {
  width: 120px;
  border-radius: 8px 8px 0 0;
  background: #d8d8d8;
}

.aiers-page .aiers-cheapest__bars article:nth-child(1) i {
  height: 89px;
  background: #ff6b4a;
}

.aiers-page .aiers-cheapest__bars article:nth-child(2) i {
  height: 136px;
}

.aiers-page .aiers-cheapest__bars article:nth-child(3) i {
  height: 218px;
}

.aiers-page .aiers-cheapest__bars article:nth-child(4) i {
  height: 290px;
}

.aiers-page .aiers-cheapest__bars p,
.aiers-page .aiers-cheapest__bars strong {
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__bars .is-now p {
  color: #121212;
  font-weight: 700;
}

.aiers-page .aiers-cheapest__bars .is-now strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-cheapest__offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  width: 100%;
  min-height: 181px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.aiers-page .aiers-cheapest__offer h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__offer p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
}

.aiers-page .aiers-cheapest__offer s {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__offer strong {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-cheapest__offer-cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 20px 12px;
  border-radius: 8px;
  background: #ff6b4a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.aiers-page .aiers-refund {
  position: relative;
  height: 259px;
  overflow: hidden;
  background: linear-gradient(180deg, #ff6b4a 0%, #d94428 100%);
}

.aiers-page .aiers-refund__copy {
  position: absolute;
  top: 44px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 324px;
  margin-left: -162px;
  text-align: center;
  z-index: 2;
}

.aiers-page .aiers-refund__headline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 240px;
}

.aiers-page .aiers-refund__eyebrow {
  width: 240px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.125px;
}

.aiers-page .aiers-refund h2 {
  width: 240px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.575px;
}

.aiers-page .aiers-refund__description {
  width: 324px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-refund__mail {
  position: absolute;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transform-origin: center;
}

.aiers-page .aiers-refund__mail--desktop-left {
  top: 59px;
  left: calc(50% - 351px);
  width: 149px;
  height: 149px;
  transform: rotate(-15deg);
}

.aiers-page .aiers-refund__mail--desktop-bottom {
  top: 208px;
  left: calc(50% + 162px);
  width: 79px;
  height: 79px;
  transform: rotate(-15deg);
}

.aiers-page .aiers-refund__mail--desktop-top {
  top: -31px;
  left: calc(50% + 185px);
  width: 126px;
  height: 126px;
  transform: rotate(30deg);
}

.aiers-page .aiers-refund__mail--mobile-left,
.aiers-page .aiers-refund__mail--mobile-top {
  display: none;
}

.aiers-page .aiers-student-results {
  position: relative;
  height: 1015px;
  overflow: hidden;
  background: #fff;
}

.aiers-page .aiers-student-results::before,
.aiers-page .aiers-student-results::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.aiers-page .aiers-student-results::before {
  top: 0;
  height: 441px;
  background: linear-gradient(180deg, #fff 0%, #fff 75%, rgba(255, 255, 255, 0) 100%);
}

.aiers-page .aiers-student-results::after {
  bottom: 0;
  height: 237px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 40%, #fff 100%);
}

.aiers-page .aiers-student-results__heading {
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(1280px, calc(100% - 32px));
  transform: translateX(-50%);
  text-align: center;
}

.aiers-page .aiers-student-results__heading h2 {
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-student-results__heading h2 em {
  color: #ff6b4a;
  font-style: normal;
}

.aiers-page .aiers-student-results__heading p {
  margin: 0;
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.aiers-page .aiers-student-results__row {
  --aiers-student-results-gap: 10px;
  --aiers-student-results-duration: 48s;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--aiers-student-results-gap);
  width: max-content;
}

.aiers-page .aiers-student-results__row.is-rolling {
  display: block;
  gap: 0;
}

.aiers-page .aiers-student-results__track,
.aiers-page .aiers-student-results__set {
  display: flex;
  align-items: center;
  width: max-content;
}

.aiers-page .aiers-student-results__track {
  will-change: transform;
}

.aiers-page .aiers-student-results__set {
  gap: var(--aiers-student-results-gap);
  padding-right: var(--aiers-student-results-gap);
}

.aiers-page .aiers-student-results__row--first .aiers-student-results__track {
  animation: aiers-student-results-roll-left var(--aiers-student-results-duration) linear infinite;
}

.aiers-page .aiers-student-results__row--second .aiers-student-results__track {
  animation: aiers-student-results-roll-right var(--aiers-student-results-duration) linear infinite;
}

@keyframes aiers-student-results-roll-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes aiers-student-results-roll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.aiers-page .aiers-student-results__row--first {
  top: 330px;
  left: calc(50% - 1865px);
}

.aiers-page .aiers-student-results__row--second {
  top: 608px;
  left: calc(50% - 1174px);
}

.aiers-page .aiers-student-results__tile {
  position: relative;
  display: block;
  flex: 0 0 258px;
  width: 258px;
  height: 258px;
  overflow: hidden;
  border-radius: 12px;
}

.aiers-page .aiers-student-results__tile img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.aiers-page .aiers-student-results__tile .aiers-student-results__wide-image {
  position: absolute;
  top: 0;
  left: -0.14%;
  width: 149.06%;
  height: 100%;
  object-fit: fill;
}

@media (min-width: 861px) and (max-width: 1299px) {
  .aiers-page .aiers-student-results {
    height: 900px;
  }

  .aiers-page .aiers-student-results::before {
    height: 360px;
  }

  .aiers-page .aiers-student-results::after {
    height: 200px;
  }

  .aiers-page .aiers-student-results__heading {
    top: 100px;
    width: calc(100% - 48px);
  }

  .aiers-page .aiers-student-results__heading h2 {
    font-size: 34px;
  }

  .aiers-page .aiers-student-results__heading p {
    font-size: 18px;
  }

  .aiers-page .aiers-student-results__row {
    --aiers-student-results-gap: 9px;
    --aiers-student-results-duration: 42s;
  }

  .aiers-page .aiers-student-results__row--first {
    top: 290px;
    left: 50%;
    transform: translateX(-58%);
  }

  .aiers-page .aiers-student-results__row--second {
    top: 538px;
    left: 50%;
    transform: translateX(-44%);
  }

  .aiers-page .aiers-student-results__tile {
    flex-basis: 230px;
    width: 230px;
    height: 230px;
    border-radius: 11px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .aiers-page .aiers-student-results {
    height: 760px;
  }

  .aiers-page .aiers-student-results::before {
    height: 310px;
  }

  .aiers-page .aiers-student-results::after {
    height: 170px;
  }

  .aiers-page .aiers-student-results__heading {
    top: 80px;
    width: calc(100% - 48px);
    gap: 16px;
  }

  .aiers-page .aiers-student-results__heading h2 {
    font-size: 30px;
  }

  .aiers-page .aiers-student-results__heading p {
    font-size: 17px;
  }

  .aiers-page .aiers-student-results__row {
    --aiers-student-results-gap: 8px;
    --aiers-student-results-duration: 36s;
  }

  .aiers-page .aiers-student-results__row--first {
    top: 250px;
    left: 50%;
    transform: translateX(-58%);
  }

  .aiers-page .aiers-student-results__row--second {
    top: 448px;
    left: 50%;
    transform: translateX(-44%);
  }

  .aiers-page .aiers-student-results__tile {
    flex-basis: 190px;
    width: 190px;
    height: 190px;
    border-radius: 9px;
  }
}

@media (max-width: 767px) {
  .aiers-page .aiers-student-results {
    height: 560px;
  }

  .aiers-page .aiers-student-results::before {
    height: 244px;
    background: linear-gradient(180deg, #fff 0%, #fff 75%, rgba(255, 255, 255, 0) 100%);
  }

  .aiers-page .aiers-student-results::after {
    height: 131px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 30%, #fff 100%);
  }

  .aiers-page .aiers-student-results__heading {
    top: 60px;
    gap: 12px;
    width: calc(100% - 32px);
  }

  .aiers-page .aiers-student-results__heading h2 {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-student-results__heading p {
    font-size: 16px;
  }

  .aiers-page .aiers-student-results__row {
    --aiers-student-results-gap: 5px;
    --aiers-student-results-duration: 28s;
  }

  .aiers-page .aiers-student-results__row--first {
    top: 200px;
    left: calc(50% - 646.5px);
  }

  .aiers-page .aiers-student-results__row--second {
    top: 339px;
    left: calc(50% - 278.5px);
  }

  .aiers-page .aiers-student-results__tile {
    flex-basis: 129px;
    width: 129px;
    height: 129px;
    border-radius: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-student-results__track {
    animation: none !important;
    transform: none !important;
  }
}

.aiers-page .aiers-section-nav {
  display: flex;
  position: sticky;
  top: var(--aiers-section-nav-top, 0px);
  z-index: 30;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(255, 107, 74, 0.16);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
}

.aiers-page #intro,
.aiers-page #curriculum,
.aiers-page #instructor,
.aiers-page #faq {
  scroll-margin-top: calc(var(--aiers-section-nav-top, 0px) + 60px);
}

.aiers-page .aiers-section-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25%;
  height: 60px;
  padding: 19px 0;
  color: #666;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.8px;
  letter-spacing: -0.234px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-section-nav__link.is-active {
  color: #ff6b4a;
}

.aiers-page .aiers-section-nav__link.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ff6b4a;
  content: "";
}

.aiers-page .aiers-results {
  position: relative;
  height: 2147px;
  overflow: hidden;
  background: #fff;
}

.aiers-page .aiers-results__title {
  position: absolute;
  top: 120px;
  left: calc(50% - 640px);
  width: 1280px;
  z-index: 2;
}

.aiers-page .aiers-results__title h2 {
  width: 1133px;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-results__title h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-results__title p,
.aiers-page .aiers-results__teasers h3 {
  margin: 0;
  color: #121212;
  font-size: 28px;
  font-weight: 700;
  line-height: 18.4px;
  letter-spacing: 0.92px;
}

.aiers-page .aiers-results__title p {
  position: absolute;
  top: 180px;
  left: 0;
}

.aiers-page .aiers-results__visuals {
  position: absolute;
  top: 359px;
  left: 0;
  width: 100%;
  height: 685px;
  overflow: hidden;
}

.aiers-page .aiers-results__row {
  position: absolute;
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  --aiers-results-distance: 2660px;
  animation: aiers-results-slide var(--aiers-results-duration, 42s) linear infinite;
  will-change: transform;
}

.aiers-page .aiers-results__row--one {
  top: 0;
  left: calc(50% - 1379px);
  --aiers-results-duration: 38s;
}

.aiers-page .aiers-results__row--two {
  top: 346px;
  left: calc(50% - 1244px);
  --aiers-results-duration: 46s;
}

.aiers-page .aiers-results__row img {
  display: block;
  flex: 0 0 auto;
  width: 312.5px;
  height: 330px;
  border-radius: 16px;
  background-color: #121212;
  object-fit: cover;
}

.aiers-page .aiers-results__row--one img:nth-child(8n+5),
.aiers-page .aiers-results__row--two img:nth-child(8n+1) {
  object-position: center 21%;
}

.aiers-page .aiers-results__fade {
  position: absolute;
  top: 0;
  width: 320px;
  height: 2147px;
  z-index: 1;
  pointer-events: none;
}

.aiers-page .aiers-results__fade--left {
  left: 0;
  background: linear-gradient(90deg, #fff 26.4%, rgba(255, 255, 255, 0) 100%);
}

.aiers-page .aiers-results__fade--right {
  right: -34px;
  background: linear-gradient(270deg, #fff 28%, rgba(255, 255, 255, 0) 100%);
}

.aiers-page .aiers-results__teasers {
  position: absolute;
  top: 1124px;
  left: calc(50% - 640px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1280px;
  z-index: 2;
}

.aiers-page .aiers-results__teasers h3 {
  display: flex;
  align-items: center;
  height: 23px;
}

.aiers-page .aiers-results__teaser-row {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 1280px;
}

.aiers-page .aiers-results__teaser-card {
  position: relative;
  flex: 0 0 auto;
  width: 630px;
  height: 840px;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.aiers-page .aiers-results__teaser-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0;
  animation: aiers-teaser-rotate 9s linear infinite;
}

.aiers-page .aiers-results__teaser-frame--one {
  opacity: 1;
  animation-delay: 0s;
}

.aiers-page .aiers-results__teaser-frame--two {
  animation-delay: 3s;
}

.aiers-page .aiers-results__teaser-frame--three {
  animation-delay: 6s;
}

.aiers-page .aiers-results__teaser-card--two-frame .aiers-results__teaser-frame {
  animation-name: aiers-teaser-rotate-two;
  animation-duration: 6s;
}

.aiers-page .aiers-results__teaser-scroll {
  display: none;
}

.aiers-page .aiers-results__teaser-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

@keyframes aiers-teaser-rotate {
  0%,
  30% {
    opacity: 1;
  }

  33.333%,
  96.667% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aiers-teaser-rotate-two {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aiers-results-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--aiers-results-distance) * -1));
  }
}

@keyframes aiers-results-teaser-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1790px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-results__row {
    animation: none;
  }

  .aiers-page .aiers-ip-character__cards {
    animation: none;
  }

  .aiers-page .aiers-brand-proof__track {
    animation: none;
  }

  .aiers-page .aiers-process__thumb-extra {
    animation: none;
    opacity: 1;
  }
}

.aiers-page .aiers-ip-character {
  background: #121212;
  padding: 120px 0;
  overflow: hidden;
}

.aiers-page .aiers-ip-character__inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.aiers-page .aiers-ip-character h2 {
  display: flex;
  min-height: 100px;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.aiers-page .aiers-ip-character__headline {
  display: block;
}

.aiers-page .aiers-ip-character__headline--mo {
  display: none;
}

.aiers-page .aiers-ip-character h2 em {
  color: #ff6b4a;
  font-style: normal;
}

.aiers-page .aiers-ip-character__mo-break {
  display: none;
}

.aiers-page .aiers-ip-character__viewport {
  width: 1280px;
  height: 480px;
  margin-top: 80px;
  overflow: hidden;
}

.aiers-page .aiers-ip-character__cards {
  --ip-card-gap: 29px;
  --ip-card-width: 407px;
  --ip-roll-distance: 1744px;
  --ip-roll-duration: 56s;
  display: flex;
  gap: var(--ip-card-gap);
  width: max-content;
  height: 480px;
  animation: aiers-ip-character-roll var(--ip-roll-duration) linear infinite;
  scrollbar-width: none;
  will-change: transform;
}

.aiers-page .aiers-ip-character__cards::-webkit-scrollbar {
  display: none;
}

.aiers-page .aiers-ip-character__card {
  position: relative;
  flex: 0 0 var(--ip-card-width);
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

@keyframes aiers-ip-character-roll {
  to {
    transform: translate3d(calc(-1 * var(--ip-roll-distance)), 0, 0);
  }
}

.aiers-page .aiers-ip-character__blob,
.aiers-page .aiers-ip-character__shadow {
  position: absolute;
  display: block;
  pointer-events: none;
}

.aiers-page .aiers-ip-character__blob {
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.aiers-page .aiers-ip-character__shadow {
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0) 75%);
  filter: blur(1px);
}

.aiers-page .aiers-ip-character__card--gold {
  background: #efead6;
  --ip-accent: #bb9600;
  --ip-chip: rgba(187, 150, 0, 0.1);
}

.aiers-page .aiers-ip-character__card--pink {
  background: #ede3ee;
  --ip-accent: #ee29da;
  --ip-chip: rgba(238, 41, 218, 0.1);
}

.aiers-page .aiers-ip-character__card--blue {
  background: #e3e9ee;
  --ip-accent: #1d8bff;
  --ip-chip: rgba(59, 154, 255, 0.1);
}

.aiers-page .aiers-ip-character__card--coral {
  background: #ffe6e5;
  --ip-accent: #ff696a;
  --ip-chip: rgba(255, 105, 106, 0.1);
}

.aiers-page .aiers-ip-character__copy {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  width: 244px;
}

.aiers-page .aiers-ip-character__card--pink .aiers-ip-character__copy {
  width: 295px;
}

.aiers-page .aiers-ip-character__card--blue .aiers-ip-character__copy {
  width: 310px;
}

.aiers-page .aiers-ip-character__card--coral .aiers-ip-character__copy {
  width: 316px;
}

.aiers-page .aiers-ip-character__copy p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ip-chip);
  color: var(--ip-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.aiers-page .aiers-ip-character__copy h3 {
  margin: 0;
  color: #121212;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.aiers-page .aiers-ip-character__line {
  display: block;
  white-space: nowrap;
}

.aiers-page .aiers-ip-character__copy strong {
  display: block;
  margin: 0;
  color: var(--ip-accent);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.aiers-page .aiers-ip-character__card img {
  position: absolute;
  z-index: 2;
  object-fit: fill;
}

.aiers-page .aiers-ip-character__blob--gold-small {
  top: 32px;
  left: 326px;
  width: 148px;
  height: 144px;
  background-image: url("./figma/ip-character/blob-gold-small.svg");
}

.aiers-page .aiers-ip-character__blob--gold-lower {
  top: 335px;
  left: 143px;
  width: 273px;
  height: 266px;
  background-image: url("./figma/ip-character/blob-gold-lower.svg");
  transform: rotate(75deg);
}

.aiers-page .aiers-ip-character__blob--gold-large {
  top: -108px;
  left: -154px;
  width: 333px;
  height: 351px;
  background-image: url("./figma/ip-character/blob-gold-large.svg");
  transform: rotate(120deg);
}

.aiers-page .aiers-ip-character__blob--pink-main {
  top: -67px;
  left: 142px;
  width: 411px;
  height: 399px;
  background-image: url("./figma/ip-character/blob-pink-main.svg");
}

.aiers-page .aiers-ip-character__blob--pink-lower {
  top: 256px;
  left: -107px;
  width: 280px;
  height: 271px;
  background-image: url("./figma/ip-character/blob-pink-lower.svg");
  transform: rotate(179deg);
}

.aiers-page .aiers-ip-character__blob--blue-main {
  top: -244px;
  left: 61px;
  width: 411px;
  height: 399px;
  background-image: url("./figma/ip-character/blob-blue-main.svg");
  transform: rotate(-46deg);
}

.aiers-page .aiers-ip-character__blob--blue-left,
.aiers-page .aiers-ip-character__blob--blue-bottom {
  width: 191px;
  height: 186px;
  background-image: url("./figma/ip-character/blob-blue-small.svg");
  transform: rotate(-90deg);
}

.aiers-page .aiers-ip-character__blob--blue-left {
  top: 157px;
  left: -102px;
}

.aiers-page .aiers-ip-character__blob--blue-bottom {
  top: 364px;
  left: 25px;
}

.aiers-page .aiers-ip-character__blob--coral-main {
  top: -149px;
  left: -99px;
  width: 433px;
  height: 424px;
  background-image: url("./figma/ip-character/blob-coral-main.svg");
  transform: rotate(52deg);
}

.aiers-page .aiers-ip-character__blob--coral-lower {
  top: 285px;
  left: -98px;
  width: 213px;
  height: 209px;
  background-image: url("./figma/ip-character/blob-coral-small.svg");
  transform: rotate(-79deg);
}

.aiers-page .aiers-ip-character__card--gold .aiers-ip-character__shadow {
  top: 432px;
  left: 216px;
  width: 166px;
  height: 26px;
}

.aiers-page .aiers-ip-character__card--pink .aiers-ip-character__shadow {
  top: 436px;
  left: 236px;
  width: 166px;
  height: 26px;
}

.aiers-page .aiers-ip-character__card--blue .aiers-ip-character__shadow {
  top: 437px;
  left: 254px;
  width: 134px;
  height: 23px;
}

.aiers-page .aiers-ip-character__card--coral .aiers-ip-character__shadow {
  top: 441px;
  left: 246px;
  width: 144px;
  height: 24px;
}

.aiers-page .aiers-ip-character__card--gold img {
  top: 244px;
  left: 191px;
  width: 216px;
  height: 223px;
}

.aiers-page .aiers-ip-character__card--pink img {
  top: 224px;
  left: 213px;
  width: 189px;
  height: 253px;
}

.aiers-page .aiers-ip-character__card--blue img {
  top: 222px;
  left: 199px;
  width: 245px;
  height: 253px;
}

.aiers-page .aiers-ip-character__card--coral img {
  top: 240px;
  left: 204px;
  width: 223px;
  height: 230px;
}

.aiers-page .aiers-brand-proof {
  position: relative;
  overflow: hidden;
  background: #121212;
  padding: 120px 0;
}

.aiers-page .aiers-brand-proof__inner {
  width: 100%;
  margin: 0 auto;
}

.aiers-page .aiers-brand-proof__content {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.aiers-page .aiers-brand-proof__copy {
  width: 100%;
}

.aiers-page .aiers-brand-proof__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.aiers-page .aiers-brand-proof__title,
.aiers-page .aiers-brand-proof__title span {
  display: block;
}

.aiers-page .aiers-brand-proof__title--mobile {
  display: none;
}

.aiers-page .aiers-brand-proof__copy h2 em {
  color: #ff6b4a;
  font-style: normal;
}

.aiers-page .aiers-brand-proof__copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.aiers-page .aiers-brand-proof__video-frame {
  width: 100%;
  height: 724px;
  margin-top: 60px;
  overflow: hidden;
  border-radius: 10px;
  background: #201814;
}

.aiers-page .aiers-brand-proof__video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-brand-proof__marquee {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  height: 106px;
  margin: 70px auto 0;
  overflow: hidden;
}

.aiers-page .aiers-brand-proof__marquee::before,
.aiers-page .aiers-brand-proof__marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 160px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.aiers-page .aiers-brand-proof__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0) 100%);
}

.aiers-page .aiers-brand-proof__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #121212 0%, rgba(18, 18, 18, 0) 100%);
}

.aiers-page .aiers-brand-proof__track {
  display: flex;
  width: max-content;
  animation: aiers-brand-proof-marquee 42s linear infinite;
  will-change: transform;
}

.aiers-page .aiers-brand-proof__set {
  display: flex;
  gap: 80px;
  padding-right: 80px;
}

.aiers-page .aiers-brand-proof__logo {
  display: flex;
  flex: 0 0 auto;
  min-width: 275px;
  height: 106px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.aiers-page .aiers-brand-proof__laurel {
  width: 40px;
  height: 100px;
  flex: 0 0 40px;
}

.aiers-page .aiers-brand-proof__laurel--right {
  transform: scaleX(-1);
}

.aiers-page .aiers-brand-proof__logo-copy {
  min-width: 155px;
}

.aiers-page .aiers-brand-proof__logo-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.aiers-page .aiers-brand-proof__logo-copy strong {
  display: block;
  margin-top: 8px;
  color: #ff6b4a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

@keyframes aiers-brand-proof-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.aiers-page .aiers-transition-band {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #ff6b4a;
}

.aiers-page .aiers-transition-band__ornament {
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.aiers-page .aiers-transition-band__ornament img {
  display: block;
  width: var(--aiers-transition-ornament-w);
  height: var(--aiers-transition-ornament-h);
  object-fit: contain;
  transform: rotate(var(--aiers-transition-ornament-rotate));
  transform-origin: center;
}

.aiers-page .aiers-transition-band__ornament--left {
  top: calc(50% + 3.32px);
  left: calc(50% - 774.56px);
  width: 1565.62px;
  height: 1579.34px;
  --aiers-transition-ornament-w: 1130.85px;
  --aiers-transition-ornament-h: 1168.92px;
  --aiers-transition-ornament-rotate: -149.77deg;
}

.aiers-page .aiers-transition-band__ornament--right {
  top: calc(50% + 17.79px);
  left: calc(50% + 768.72px);
  width: 1555.43px;
  height: 1573.38px;
  --aiers-transition-ornament-w: 1151.37px;
  --aiers-transition-ornament-h: 1190.12px;
  --aiers-transition-ornament-rotate: 154.11deg;
}

.aiers-page .aiers-transition-band p {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 903px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.aiers-page .aiers-transition-band em {
  color: #fff2a6;
  font-style: normal;
  white-space: nowrap;
}

.aiers-page .aiers-transition-band__after-break {
  display: none;
}

.aiers-page .aiers-transition-band__mo {
  display: none;
}

.aiers-page .aiers-ai-image {
  position: relative;
  height: 896px;
  overflow: hidden;
  padding: 120px 0 0;
  background: #141414;
}

.aiers-page .aiers-ai-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: lighten;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0 10%, rgba(0, 0, 0, 0) 48%),
    url("./figma/ai-image/bg-texture.webp") center / cover no-repeat;
  transform: rotate(90deg) scale(1.5);
  pointer-events: none;
}

.aiers-page .aiers-ai-image__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-ai-image h2 {
  width: 1280px;
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.aiers-page .aiers-ai-image h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-ai-image__mo-break {
  display: none;
}

.aiers-page .aiers-ai-image__cards {
  position: relative;
  width: 1280px;
  height: 520px;
}

.aiers-page .aiers-ai-image__card {
  position: absolute;
  width: 644px;
  height: 137px;
  padding: 24px 29px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.aiers-page .aiers-ai-image__card::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: none;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.06);
  filter: blur(30px);
  pointer-events: none;
}

.aiers-page .aiers-ai-image__card--one {
  top: 14px;
  left: 123px;
  width: 697px;
  transform: rotate(-1.19deg);
}

.aiers-page .aiers-ai-image__card--two {
  top: 183px;
  left: 548px;
  transform: rotate(1.87deg);
}

.aiers-page .aiers-ai-image__card--three {
  top: 336px;
  left: 207px;
  transform: rotate(2.76deg);
}

.aiers-page .aiers-ai-image__card-copy {
  position: absolute;
  top: 24px;
  left: 29px;
  width: 501px;
}

.aiers-page .aiers-ai-image__card--two .aiers-ai-image__card-copy {
  left: 46px;
  width: 457px;
}

.aiers-page .aiers-ai-image__card--three .aiers-ai-image__card-copy {
  top: 27px;
  left: 40px;
  width: 443px;
}

.aiers-page .aiers-ai-image__role {
  margin: 0 0 4px;
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 600;
  line-height: 24.8px;
  letter-spacing: 0;
}

.aiers-page .aiers-ai-image__card h3 {
  margin: 0;
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.aiers-page .aiers-ai-image__desc {
  margin: 6px 0 0;
  color: rgba(18, 18, 18, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0;
}

.aiers-page .aiers-ai-image__card .aiers-img-wrap {
  display: block;
  position: absolute;
  pointer-events: none;
}

.aiers-page .aiers-ai-image__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-ai-image__card--one .aiers-img-wrap {
  top: -14px;
  right: -5px;
  width: 159px;
  height: 192px;
}

.aiers-page .aiers-ai-image__card--two .aiers-img-wrap {
  top: 8px;
  right: -8px;
  width: 161px;
  height: 161px;
}

.aiers-page .aiers-ai-image__card--three .aiers-img-wrap {
  top: -11px;
  right: -30px;
  width: 202px;
  height: 202px;
}

.aiers-page .aiers-ai-image__card--two img {
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-workflow-results {
  height: 2271px;
  padding: 120px 0;
  background: #fff;
}

.aiers-page .aiers-workflow-results__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-workflow-results__headline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 178px;
  width: 100%;
}

.aiers-page .aiers-workflow-results__headline h2 {
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-workflow-results__headline h2 em {
  color: #ff6b4a;
  font-style: normal;
}

.aiers-page .aiers-workflow-results__title-desktop {
  display: inline;
}

.aiers-page .aiers-workflow-results__title-mobile {
  display: none;
}

.aiers-page .aiers-workflow-results__headline p {
  margin: 0;
  color: #666;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.aiers-page .aiers-workflow-results__mobile-break {
  display: none;
}

.aiers-page .aiers-workflow-results__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 1280px;
  margin-top: 40px;
}

.aiers-page .aiers-workflow-results__top-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.aiers-page .aiers-workflow-results__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fafafa;
}

.aiers-page .aiers-workflow-results__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 113px;
}

.aiers-page .aiers-workflow-results__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid #ff6b4a;
  border-radius: 4px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.aiers-page .aiers-workflow-results__copy h3 {
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.aiers-page .aiers-workflow-results__copy p {
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.aiers-page .aiers-workflow-results__image,
.aiers-page .aiers-workflow-results__triptych,
.aiers-page .aiers-workflow-results__duo {
  overflow: hidden;
  border-radius: 4px;
  background: #121212;
}

.aiers-page .aiers-workflow-results__image {
  position: relative;
  height: 279px;
}

.aiers-page .aiers-workflow-results__image .aiers-img-wrap,
.aiers-page .aiers-workflow-results__triptych .aiers-img-wrap,
.aiers-page .aiers-workflow-results__duo .aiers-img-wrap {
  display: block;
  min-width: 0;
}

.aiers-page .aiers-workflow-results__image img,
.aiers-page .aiers-workflow-results__triptych img,
.aiers-page .aiers-workflow-results__duo img,
.aiers-page .aiers-workflow-results__duo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-workflow-results__image--chat .aiers-workflow-results__chat-bg {
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-workflow-results__image--chat .aiers-workflow-results__chat-example {
  position: absolute;
  top: 0;
  left: 67px;
  width: 446px;
  height: 489px;
  object-fit: cover;
  object-position: top center;
}

.aiers-page .aiers-workflow-results__image--mood img {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 778px;
  height: 374px;
  transform: translateX(-50%);
}

.aiers-page .aiers-workflow-results__triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 279px;
  background: transparent;
}

.aiers-page .aiers-workflow-results__triptych .aiers-img-wrap,
.aiers-page .aiers-workflow-results__duo .aiers-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  background: #121212;
}

.aiers-page .aiers-workflow-results__sequence {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #121212;
  isolation: isolate;
}

.aiers-page .aiers-workflow-results__sequence-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  animation: aiers-keyvisual-sequence 9s ease-in-out infinite;
  background: #121212;
  will-change: opacity;
}

.aiers-page .aiers-workflow-results__sequence-frame:nth-child(1) {
  animation-delay: 0s;
}

.aiers-page .aiers-workflow-results__sequence-frame:nth-child(2) {
  animation-delay: 3s;
}

.aiers-page .aiers-workflow-results__sequence-frame:nth-child(3) {
  animation-delay: 6s;
}

.aiers-page .aiers-workflow-results__sequence-frame img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: fill;
}

.aiers-page .aiers-workflow-results__sequence-frame--left-01 img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aiers-page .aiers-workflow-results__sequence-frame--left-02 img,
.aiers-page .aiers-workflow-results__sequence-frame--right-01 img {
  top: -8.31%;
  left: 9.73%;
  width: 80.68%;
  height: 116.83%;
}

.aiers-page .aiers-workflow-results__sequence-frame--left-03 img,
.aiers-page .aiers-workflow-results__sequence-frame--right-02 img {
  top: -8.39%;
  left: 17.66%;
  width: 64.75%;
  height: 117.2%;
}

.aiers-page .aiers-workflow-results__sequence-frame--center-01 img,
.aiers-page .aiers-workflow-results__sequence-frame--center-02 img,
.aiers-page .aiers-workflow-results__sequence-frame--center-03 img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-workflow-results__sequence-frame--right-01 {
  background: #ffe4db;
}

.aiers-page .aiers-workflow-results__sequence-frame--right-02 {
  background: #f9fafb;
}

.aiers-page .aiers-workflow-results__sequence-frame--right-03 {
  background: #ddd;
}

.aiers-page .aiers-workflow-results__sequence-frame--right-03 img {
  top: -11.09%;
  left: 16.98%;
  width: 66.2%;
  height: 119.82%;
}

.aiers-page .aiers-workflow-results__sequence--system-result .aiers-workflow-results__sequence-frame img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-workflow-results__duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  height: 344px;
  background: transparent;
}

.aiers-page .aiers-workflow-results__emphasis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 154px;
  padding: 24px;
  border: 2px solid #ff6b4a;
  border-radius: 12px;
  background: rgba(255, 107, 74, 0.05);
  color: #121212;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.24px;
  text-align: center;
}

.aiers-page .aiers-workflow-results__emphasis-copy {
  width: 100%;
  margin: 0;
  word-break: keep-all;
}

.aiers-page .aiers-workflow-results__emphasis-mobile-break {
  display: none;
}

@keyframes aiers-keyvisual-sequence {
  0%,
  29% {
    opacity: 1;
  }

  35%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-workflow-results__sequence-frame {
    animation: none;
    opacity: 0;
  }

  .aiers-page .aiers-workflow-results__sequence-frame:first-child {
    opacity: 1;
  }
}

.aiers-page .aiers-system-bridge {
  position: relative;
  height: 333px;
  overflow: hidden;
  background: #ff6b4a;
}

.aiers-page .aiers-system-bridge__motif {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.aiers-page .aiers-system-bridge__motif img {
  display: block;
  width: 1151.37px;
  height: 1190.12px;
  opacity: 0.4;
  object-fit: cover;
  object-position: bottom center;
}

.aiers-page .aiers-system-bridge__motif--right {
  top: -620px;
  left: calc(50% + 0px);
  width: 1555.43px;
  height: 1573.38px;
  transform: rotate(154.11deg);
}

.aiers-page .aiers-system-bridge__motif--left {
  top: -615px;
  right: calc(50% + 0px);
  width: 1565.62px;
  height: 1579.34px;
  transform: rotate(-149.77deg);
}

.aiers-page .aiers-system-bridge__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 1135px;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  word-break: keep-all;
}

.aiers-page .aiers-system-bridge__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 903px;
}

.aiers-page .aiers-system-bridge__eyebrow {
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.aiers-page .aiers-system-bridge h2 {
  width: 100%;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.aiers-page .aiers-system-bridge__desc {
  width: 1135px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.aiers-page .aiers-system-bridge__mobile-title {
  display: none;
}

.aiers-page .aiers-system-bridge__desktop-title {
  display: block;
  white-space: nowrap;
}

.aiers-page .aiers-beginner {
  height: 758px;
  padding: 120px 0;
  background: #fff;
}

.aiers-page .aiers-beginner__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-beginner__title {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 708px;
}

.aiers-page .aiers-beginner__title h2 {
  width: 1133px;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-beginner__title h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-beginner__title p {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-beginner__title strong {
  color: #666;
  font-weight: 700;
}

.aiers-page .aiers-beginner__mobile-break {
  display: none;
}

.aiers-page .aiers-beginner__mobile-copy {
  display: none;
}

.aiers-page .aiers-beginner__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 360px;
}

.aiers-page .aiers-beginner__featured {
  display: grid;
  grid-template-columns: repeat(2, 630px);
  gap: 20px;
}

.aiers-page .aiers-beginner__feature-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 184px;
  padding: 30px 32px;
  overflow: hidden;
  border: 2px solid #ff6b4a;
  border-radius: 12px;
  background: #fff;
}

.aiers-page .aiers-beginner__feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.aiers-page .aiers-beginner__label {
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.aiers-page .aiers-beginner__feature-card h3 {
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.aiers-page .aiers-beginner__feature-card h3 span {
  color: #ff6b4a;
}

.aiers-page .aiers-beginner__desc {
  color: rgba(18, 18, 18, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.16px;
}

.aiers-page .aiers-beginner__project-art {
  position: relative;
  flex: 0 0 auto;
  margin: -14px 32px -12px 0;
  width: 123px;
  height: 124.87px;
}

.aiers-page .aiers-beginner__project-art .aiers-img-wrap,
.aiers-page .aiers-beginner__assistant-art,
.aiers-page .aiers-beginner__tile .aiers-img-wrap {
  display: block;
}

.aiers-page .aiers-beginner__project-art img,
.aiers-page .aiers-beginner__assistant-art img,
.aiers-page .aiers-beginner__tile img {
  display: block;
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-beginner__shadow {
  position: absolute;
  left: 13px;
  top: 111.87px;
  width: 110px;
  height: 13px;
}

.aiers-page .aiers-beginner__file {
  position: absolute;
  left: 32px;
  top: 45.87px;
  width: 75px;
  height: 75px;
}

.aiers-page .aiers-beginner__film {
  position: absolute;
  left: 0;
  top: 0;
  width: 50.73px;
  height: 50.73px;
  transform: rotate(-18.74deg);
}

.aiers-page .aiers-beginner__film img {
  width: 40px;
  height: 40px;
  margin: 5.36px;
}

.aiers-page .aiers-beginner__book {
  position: absolute;
  left: 85px;
  top: 15.87px;
  width: 36.39px;
  height: 36.39px;
  transform: rotate(14.05deg);
}

.aiers-page .aiers-beginner__book img {
  width: 30px;
  height: 30px;
  margin: 3.19px;
}

.aiers-page .aiers-beginner__assistant-art {
  position: relative;
  flex: 0 0 auto;
  margin: -8px 28px -8px 0;
  width: 134.39px;
  height: 119px;
}

.aiers-page .aiers-beginner__tiles {
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 10px;
}

.aiers-page .aiers-beginner__tile {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 73px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid #ff6b4a;
  border-radius: 8px;
  background: #fff;
}

.aiers-page .aiers-beginner__tile .aiers-img-wrap {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

.aiers-page .aiers-beginner__tile div {
  width: 332px;
  min-width: 0;
}

.aiers-page .aiers-beginner__tile h3 {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-beginner__tile p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-process {
  height: auto;
  padding: 120px 0;
  background: #fff3ef;
}

.aiers-page .aiers-process__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-process__intro {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.aiers-page .aiers-process h2 {
  width: 708px;
  height: 100px;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-process h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-process__cards {
  display: grid;
  grid-template-columns: repeat(2, 630px);
  gap: 20px;
  width: 1280px;
  overflow: visible;
}

.aiers-page .aiers-process__course-card {
  flex: 0 0 630px;
  overflow: hidden;
  border-radius: 12px;
}

.aiers-page .aiers-process__course-card:nth-child(2n + 1) {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.aiers-page .aiers-process__thumb {
  position: relative;
  height: 354px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #121212;
}

.aiers-page .aiers-process__thumb .aiers-img-wrap {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-process__thumb--split {
  display: grid;
  grid-template-columns: 314px 315px;
  gap: 0;
  background: #f3f3f3;
}

.aiers-page .aiers-process__thumb--split .aiers-process__thumb-half {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-process__thumb img,
.aiers-page .aiers-process__thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__thumb-extra {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  animation: aiers-process-thumb-extra-cycle 6s ease-in-out infinite;
}

@keyframes aiers-process-thumb-extra-cycle {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.aiers-page .aiers-process__thumb--step4 img {
  height: 177.97%;
  object-fit: cover;
  object-position: center 37%;
}

.aiers-page .aiers-process__thumb--step4 > .aiers-img-wrap video {
  object-position: center 37%;
}

.aiers-page .aiers-process__card-copy {
  min-height: 238px;
  padding: 36px 40px;
  border: 1px solid #e6e6e6;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: #fff;
}

.aiers-page .aiers-process__tag,
.aiers-page .aiers-process__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #ff6b4a;
  border-radius: 4px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-process__card-copy h3 {
  margin-top: 12px;
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.aiers-page .aiers-process__card-copy ul {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  padding: 0;
  list-style: none;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.aiers-page .aiers-process__card-copy li::before {
  content: "- ";
}

.aiers-page .aiers-process__callout {
  width: 1280px;
  padding: 24px;
  border: 1px solid #ff6b4a;
  border-radius: 12px;
  background: #fff;
  color: #121212;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.aiers-page .aiers-process__callout span {
  color: #ff6b4a;
}

.aiers-page .aiers-process__compare-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aiers-page .aiers-process__compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-process__compare-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}

.aiers-page .aiers-process__compare-head .aiers-process__step {
  border-color: #ffc8b7;
  background: #ff6b4a;
  color: #fff;
  font-size: 18px;
}

.aiers-page .aiers-process__compare-head h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-process__compare-head p {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-process__before-after {
  display: grid;
  grid-template-columns: repeat(2, 630px);
  gap: 20px;
}

.aiers-page .aiers-process__before,
.aiers-page .aiers-process__after {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 443px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
}

.aiers-page .aiers-process__before {
  background: #8c8c8c;
}

.aiers-page .aiers-process__after {
  background: #ffe1e1;
}

.aiers-page .aiers-process__compare:first-child .aiers-process__after,
.aiers-page .aiers-process__compare:first-child .aiers-process__after .aiers-process__ba-visual {
  background: #fff;
}

.aiers-page .aiers-process__ba-label {
  display: flex;
  position: relative;
  z-index: 2;
  flex: 0 0 89px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 89px;
  color: #fff;
  text-align: center;
}

.aiers-page .aiers-process__before .aiers-process__ba-label {
  background: #666;
}

.aiers-page .aiers-process__after .aiers-process__ba-label {
  background: #ff6b4a;
}

.aiers-page .aiers-process__ba-label strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-process__ba-label .aiers-img-wrap {
  display: block;
  width: 19.5px;
  height: 19.5px;
}

.aiers-page .aiers-process__ba-label img {
  width: 19.5px;
  height: 19.5px;
}

.aiers-page .aiers-process__ba-label span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-process__ba-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #8c8c8c;
}

.aiers-page .aiers-process__after .aiers-process__ba-visual {
  background: #ffe1e1;
}

.aiers-page .aiers-process__ba-image {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.aiers-page .aiers-process__ba-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.aiers-page .aiers-process__ba-split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.aiers-page .aiers-process__ba-half {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.aiers-page .aiers-process__ba-half > img:not(.aiers-process__ba-status) {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-split--step2-before,
.aiers-page .aiers-process__ba-split--step2-after {
  grid-template-columns: 315px 315px;
  background: #fff;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--front {
  height: 358px;
  margin-top: -2px;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--front > img {
  inset: 0;
  width: 315px;
  height: 358px;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--side {
  height: 367px;
  margin-top: -3px;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-step2-bg {
  position: absolute;
  top: 20px;
  left: -26px;
  width: 367px;
  height: 367px;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-step2-character {
  position: absolute;
  top: -82px;
  left: -172px;
  width: 617px;
  height: 617px;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-status {
  top: 15px;
}

.aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-half--front > img {
  top: 0;
  left: -19px;
  width: 354px;
  height: 354px;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-half--side {
  background: #dbdcde;
}

.aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-step2-character {
  position: absolute;
  top: -75px;
  left: -74px;
  width: 577px;
  height: 577px;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-status {
  top: 15px;
}

.aiers-page .aiers-process__ba-status {
  position: absolute;
  top: 15px;
  left: 50%;
  display: block;
  width: 60px;
  height: 60px;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.aiers-page .aiers-process__ba-visual--step1-before .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aiers-page .aiers-process__ba-visual--step1-after .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aiers-page .aiers-process__ba-visual--step2-before .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual--step2-after .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-cycle {
  position: absolute;
  inset: 0;
}

.aiers-page .aiers-process__ba-cycle-image {
  opacity: 0;
  animation: aiers-process-ba-cycle 6s ease-in-out infinite;
}

.aiers-page .aiers-process__ba-cycle-image--alt {
  animation-delay: 3s;
}

@keyframes aiers-process-ba-cycle {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-process__ba-cycle-image {
    opacity: 1;
    animation: none;
  }

  .aiers-page .aiers-process__ba-cycle-image--alt {
    display: none;
  }
}

.aiers-page .aiers-process__ba-visual--step3-before .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual--step3-after .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual--step4-before {
  background: #e7e5de;
}

.aiers-page .aiers-process__ba-step4-before-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e7e5de;
}

.aiers-page .aiers-process__ba-step4-before-grid .aiers-process__ba-video {
  opacity: 0;
  animation: aiers-step4-before-cycle 9s infinite;
}

.aiers-page .aiers-process__ba-step4-before-grid .aiers-process__ba-video:nth-child(2) {
  animation-delay: 3s;
}

.aiers-page .aiers-process__ba-step4-before-grid .aiers-process__ba-video:nth-child(3) {
  animation-delay: 6s;
}

@keyframes aiers-step4-before-cycle {
  0%,
  30% {
    opacity: 1;
  }

  33.333%,
  96.667% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.aiers-page .aiers-process__ba-visual--step4-before .aiers-process__ba-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual--step4-after .aiers-process__ba-image--back {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.aiers-page .aiers-process__ba-visual--step4-after .aiers-process__ba-image--front {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-questions {
  height: 1395px;
  padding: 120px 0;
  background: #fff8f5;
}

.aiers-page .aiers-questions__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1280px;
  height: 1155px;
  margin: 0 auto;
}

.aiers-page .aiers-questions h2 {
  width: 1133px;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-questions h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-questions__chat {
  position: relative;
  width: 1280px;
  height: 1015px;
}

.aiers-page .aiers-questions__user,
.aiers-page .aiers-questions__answer {
  position: absolute;
}

.aiers-page .aiers-questions__user {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.aiers-page .aiers-questions__user--one {
  top: 10px;
  left: 699px;
}

.aiers-page .aiers-questions__user--two {
  top: 467px;
  left: 764px;
}

.aiers-page .aiers-questions__bubble {
  display: flex;
  align-items: center;
  height: 66px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-questions__bubble--question {
  margin-top: 40px;
  padding: 0 30px;
  border-radius: 20px 0 20px 20px;
  background: #ff6b4a;
  color: #fafafa;
}

.aiers-page .aiers-questions__user--one .aiers-questions__bubble--question {
  width: 384px;
}

.aiers-page .aiers-questions__user--two .aiers-questions__bubble--question {
  width: 319px;
}

.aiers-page .aiers-questions__avatar {
  display: block;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
}

.aiers-page .aiers-questions__avatar img,
.aiers-page .aiers-questions__image img,
.aiers-page .aiers-questions__image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-questions__answer--one {
  top: 93px;
  left: 10px;
}

.aiers-page .aiers-questions__answer--two {
  top: 583px;
  left: 10px;
}

.aiers-page .aiers-questions__bubble--answer {
  position: absolute;
  left: 100px;
  top: 27px;
  height: auto;
  min-height: 66px;
  padding: 18px 30px;
  border: 1px solid #e6e6e6;
  border-radius: 0 20px 20px;
  background: #fff;
  color: #000;
  white-space: normal;
}

.aiers-page .aiers-questions__answer--one .aiers-questions__bubble--answer {
  width: 458px;
}

.aiers-page .aiers-questions__answer--two .aiers-questions__bubble--answer {
  width: 481px;
}

.aiers-page .aiers-questions__image {
  position: absolute;
  top: 133px;
  left: 110px;
  width: 536px;
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.aiers-page .aiers-questions__image--result {
  background: #f3f4f1;
}

.aiers-page .aiers-questions__image--setting {
  left: 110px;
  background: rgba(0, 0, 0, 0.2);
}

.aiers-page .aiers-questions__rotator {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.aiers-page .aiers-questions__image--result .aiers-questions__rotator {
  background: #f3f4f1;
}

.aiers-page .aiers-questions__image--setting .aiers-questions__rotator {
  background: rgba(0, 0, 0, 0.2);
}

.aiers-page .aiers-questions__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.32s ease;
  will-change: opacity;
}

.aiers-page .aiers-questions__slide.is-active {
  opacity: 1;
}

.aiers-page .aiers-questions__image--result .aiers-questions__slide--room {
  inset: auto;
  top: -11.76%;
  left: 15.02%;
  width: 70%;
  height: 123.67%;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-questions__slide {
    transition: none;
  }

  .aiers-page .aiers-questions__slide:first-child {
    opacity: 1;
  }

  .aiers-page .aiers-questions__slide:not(:first-child) {
    display: none;
  }
}

.aiers-page .aiers-questions__image figcaption {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #ffc8b7;
  border-radius: 999px;
  background: #ff6b4a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  pointer-events: none;
}

.aiers-page .aiers-questions__image--result figcaption {
  display: flex;
}

.aiers-page .aiers-questions__mobile-break {
  display: none;
}

.aiers-page .aiers-materials {
  position: relative;
  height: 1287px;
  overflow: hidden;
  padding: 120px 0;
  background: #0e0e0e;
  color: #fff;
}

.aiers-page .aiers-materials::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1287px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #0e0e0e 74.273%, #ff6b4a 231.61%);
}

.aiers-page .aiers-materials__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-materials h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-materials h2 span {
  color: #ff6b4a;
}

.aiers-page .aiers-materials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 25px;
  row-gap: 20px;
  width: 1280px;
}

.aiers-page .aiers-materials__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #ff6b4a;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.aiers-page .aiers-materials__tag {
  align-self: flex-start;
  height: 32px;
  padding: 4px 12px;
  border: 1px solid #ff6b4a;
  border-radius: 4px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.aiers-page .aiers-materials__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 154px;
  margin-top: 20px;
}

.aiers-page .aiers-materials__icon img {
  display: block;
  width: 100px;
  height: 104px;
  object-fit: contain;
}

.aiers-page .aiers-materials__card:nth-child(2) .aiers-materials__icon img {
  height: 91px;
}

.aiers-page .aiers-materials__card:nth-child(3) .aiers-materials__icon img {
  width: 90px;
  height: 113px;
}

.aiers-page .aiers-materials__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.aiers-page .aiers-materials__copy h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.2px;
}

.aiers-page .aiers-materials__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.aiers-page .aiers-materials__card--prompt-maker {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 531px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: visible;
}

.aiers-page .aiers-materials__card--prompt-maker .aiers-materials__tag {
  order: 0;
  height: 32px;
  padding: 4px 12px;
  border-width: 1px;
  font-size: 16px;
  line-height: 22px;
}

.aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy {
  order: 2;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

.aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy h3 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.aiers-page .aiers-materials__prompt-previews {
  order: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 328px;
  margin-top: 20px;
  padding-top: 25px;
}

.aiers-page .aiers-materials__prompt-preview-image,
.aiers-page .aiers-materials__prompt-preview-crop {
  display: block;
  width: 470px;
  height: 279px;
  overflow: hidden;
  border-radius: 4px;
}

.aiers-page .aiers-materials__prompt-preview-image {
  object-fit: cover;
}

.aiers-page .aiers-materials__prompt-preview-crop {
  position: relative;
}

.aiers-page .aiers-materials__prompt-preview-crop img {
  position: absolute;
  top: -0.07%;
  left: -0.05%;
  display: block;
  width: 115.93%;
  height: 111.66%;
  max-width: none;
  object-fit: fill;
}

.aiers-page .aiers-materials__only-badge {
  position: absolute;
  top: -48px;
  right: 30px;
  z-index: 2;
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.aiers-page .aiers-s10-bridge {
  position: relative;
  height: 333px;
  overflow: hidden;
  background: #121212;
  color: #fff;
}

.aiers-page .aiers-s10-bridge__orb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1555.432px;
  height: 1573.378px;
  opacity: 0.4;
  pointer-events: none;
}

.aiers-page .aiers-s10-bridge__orb img {
  display: block;
  width: 1151.37px;
  height: 1190.123px;
  object-fit: cover;
  object-position: bottom center;
}

.aiers-page .aiers-s10-bridge__orb--right {
  left: calc(50% + 0.5px);
  top: 50%;
  transform: translate(1.52px, -50.15%) rotate(154.11deg);
}

.aiers-page .aiers-s10-bridge__orb--left {
  left: calc(50% - 1557.37px);
  top: 50%;
  width: 1565.62px;
  height: 1579.339px;
  transform: translate(0, -50.02%) rotate(-149.77deg);
}

.aiers-page .aiers-s10-bridge__copy {
  position: absolute;
  top: 50%;
  left: calc(50% + 0.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 1135px;
  transform: translate(-50%, -50%);
  text-align: center;
  word-break: keep-all;
}

.aiers-page .aiers-s10-bridge__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.aiers-page .aiers-s10-bridge__eyebrow {
  width: 100%;
  margin: 0;
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.16px;
}

.aiers-page .aiers-s10-bridge h2 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.aiers-page .aiers-s10-bridge__highlight {
  color: #ffef96;
}

.aiers-page .aiers-s10-bridge__description {
  width: 1135px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.18px;
}

.aiers-page .aiers-s10-bridge__description p {
  margin: 0;
}

.aiers-page .aiers-s10-bridge__description strong {
  font-weight: 700;
}

.aiers-page .aiers-s10-bridge__mobile-break {
  display: none;
}

.aiers-page .aiers-work-method {
  position: relative;
  height: 1039px;
  overflow: hidden;
  padding: 140px 0 120px;
  background: #fff3ef;
  color: #121212;
}

.aiers-page .aiers-work-method__curve {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 882px;
  height: 60px;
  transform: translateX(-50%);
  pointer-events: none;
}

.aiers-page .aiers-work-method__curve img {
  display: block;
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-work-method__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-work-method h2 {
  width: 1133px;
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-work-method h2 strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-work-method__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1280px;
}

.aiers-page .aiers-work-method__cards {
  display: flex;
  gap: 25px;
  width: 1280px;
}

.aiers-page .aiers-work-method__card {
  display: flex;
  align-items: center;
  width: 410px;
  height: 516px;
  padding: 32px 30px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-work-method__card > * {
  flex-shrink: 0;
}

.aiers-page .aiers-work-method__card {
  flex-direction: column;
  gap: 20px;
}

.aiers-page .aiers-work-method__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100px;
}

.aiers-page .aiers-work-method__avatar {
  display: block;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff6b4a 0%, #ffb37d 131.5%);
}

.aiers-page .aiers-work-method__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-work-method__person h3 {
  width: 100px;
  margin: 0;
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.aiers-page .aiers-work-method__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 350px;
}

.aiers-page .aiers-work-method__state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 350px;
  min-height: 100px;
  padding: 24px 40px;
  overflow: hidden;
  border-radius: 8px;
}

.aiers-page .aiers-work-method__state--old {
  border: 1px solid #ffbcbc;
  background: #fff6f6;
}

.aiers-page .aiers-work-method__state--new {
  border: 1px solid #ff6b4a;
  background: #fff0e8;
}

.aiers-page .aiers-work-method__state-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 269px;
}

.aiers-page .aiers-work-method__state-title {
  display: flex;
  align-items: center;
  gap: 2px;
}

.aiers-page .aiers-work-method__state-title .aiers-img-wrap,
.aiers-page .aiers-work-method__state-title img {
  display: block;
  width: 24px;
  height: 24px;
}

.aiers-page .aiers-work-method__state-title strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-work-method__state--old strong {
  color: #ff6161;
}

.aiers-page .aiers-work-method__state--new strong {
  color: #ff6b4a;
}

.aiers-page .aiers-work-method__state p {
  width: 269px;
  margin: 0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.aiers-page .aiers-work-method__state--new p {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
}

.aiers-page .aiers-work-method__arrow {
  display: block;
  width: 80px;
  height: 53px;
}

.aiers-page .aiers-work-method__arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.aiers-page .aiers-work-method__callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1280px;
  padding: 24px;
  border: 2px solid #ff6b4a;
  border-radius: 12px;
  background: #fff;
}

.aiers-page .aiers-work-method__callout p {
  margin: 0;
  color: #121212;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

.aiers-page .aiers-work-method__callout strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-work-method__mobile-break,
.aiers-page .aiers-work-method__mobile-only {
  display: none;
}

.aiers-page .aiers-instructor {
  height: auto;
  padding: 80px 0 120px;
  background: #fff8f5;
  color: #121212;
}

.aiers-page .aiers-instructor__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.aiers-page .aiers-instructor__main-title,
.aiers-page .aiers-instructor__proof-head h2 {
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.aiers-page .aiers-instructor strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-instructor__body {
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
}

.aiers-page .aiers-instructor__profile {
  position: relative;
  display: grid;
  grid-template-columns: 371px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  width: 100%;
  height: 465px;
  min-height: 465px;
  padding: 24px;
  border: 1px solid #e6dfd8;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-instructor__profile-media {
  position: absolute;
  left: 13px;
  top: -58px;
  width: 394px;
  height: 423px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.aiers-page .aiers-instructor__portrait {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 394px;
  height: 423px;
  overflow: hidden;
}

.aiers-page .aiers-instructor__portrait--blur {
  left: 0;
  top: 0;
  display: block;
  width: 394px;
  height: 423px;
  opacity: 0.2;
  filter: blur(20.566px);
}

.aiers-page .aiers-instructor__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.aiers-page .aiers-instructor__profile-content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 5px;
  min-width: 0;
}

.aiers-page .aiers-instructor__profile-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.aiers-page .aiers-instructor__profile-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aiers-page .aiers-instructor__name-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.aiers-page .aiers-instructor__name-row h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.aiers-page .aiers-instructor__name-row span {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__profile-heading p {
  margin: 0;
  color: #666;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aiers-page .aiers-instructor__links span,
.aiers-page .aiers-instructor__links a {
  display: inline-flex;
  align-items: center;
  height: 33px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 700;
  line-height: 18.4px;
  letter-spacing: -0.18px;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-instructor__divider {
  width: 100%;
  height: 1px;
  background: #e6dfd8;
}

.aiers-page .aiers-instructor__history {
  margin: 0;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
}

.aiers-page .aiers-instructor__history-mobile-break {
  display: none;
}

.aiers-page .aiers-instructor__history a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.aiers-page .aiers-instructor__quote {
  position: absolute;
  top: 341px;
  right: 23px;
  left: 23px;
  display: block;
  padding: 16px;
  border-radius: 8px;
  background: #ff6b4a;
}

.aiers-page .aiers-instructor__quote p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
}

.aiers-page .aiers-instructor__proof {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.aiers-page .aiers-instructor__proof-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 60px;
}

.aiers-page .aiers-instructor__proof-head p {
  margin: 0;
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.aiers-page .aiers-instructor__score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  min-height: 188px;
  padding: 20px 24px;
  border: 1px solid #ffc8b7;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-instructor__score-card span {
  color: #ff6b4a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__score-card strong {
  color: #121212;
  font-size: 40px;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__score-card em {
  color: #121212;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__score-stars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.aiers-page .aiers-instructor__score-stars .aiers-img-wrap,
.aiers-page .aiers-instructor__score-stars img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: 53.846px;
}

.aiers-page .aiers-instructor__reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin-top: 16px;
}

.aiers-page .aiers-instructor__review {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 20px 24px;
  border: 1px solid #ffc8b7;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-instructor__review-stars,
.aiers-page .aiers-instructor__review-stars img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: 40.385px;
}

.aiers-page .aiers-instructor__review p {
  margin: 0;
  color: #121212;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.aiers-page .aiers-instructor__review > span:not(.aiers-instructor__review-stars) {
  display: block;
  padding-top: 8px;
  border-top: 1px solid #e6dfd8;
  color: #999;
  font-size: 16px;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-top: 16px;
  padding: 24px;
  border: 2px solid #ff6b4a;
  border-radius: 16px;
  background: rgba(255, 107, 74, 0.1);
  text-align: center;
}

.aiers-page .aiers-instructor__guarantee .aiers-img-wrap,
.aiers-page .aiers-instructor__guarantee img {
  display: block;
  width: 48px;
  height: 48px;
}

.aiers-page .aiers-instructor__guarantee h3 {
  margin: 8px 0 12px;
  color: #121212;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__guarantee p {
  margin: 0;
  color: rgba(18, 18, 18, 0.8);
  font-size: 18px;
  line-height: 1.5;
}

.aiers-page .aiers-instructor__mobile-title {
  display: none;
}

.aiers-page .aiers-interview {
  height: 1203px;
  padding: 120px 0;
  background: #fff3ef;
  color: #121212;
}

.aiers-page .aiers-interview__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-interview__title {
  width: 1133px;
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-interview__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 1280px;
}

.aiers-page .aiers-interview__item {
  position: relative;
  width: 1280px;
  overflow: visible;
}

.aiers-page .aiers-interview__item--one {
  height: 293px;
}

.aiers-page .aiers-interview__item--two {
  height: 277px;
}

.aiers-page .aiers-interview__item--three {
  height: 263px;
}

.aiers-page .aiers-interview__bubble {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1280px;
  height: 100%;
  pointer-events: none;
}

.aiers-page .aiers-interview__item--one .aiers-interview__bubble {
  height: 293px;
}

.aiers-page .aiers-interview__item--two .aiers-interview__bubble {
  height: 274px;
  transform: scaleX(-1);
}

.aiers-page .aiers-interview__item--three .aiers-interview__bubble {
  height: 260px;
}

.aiers-page .aiers-interview__content {
  position: absolute;
  left: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1200px;
}

.aiers-page .aiers-interview__item--one .aiers-interview__content {
  top: 41px;
  gap: 20px;
}

.aiers-page .aiers-interview__item--two .aiers-interview__content {
  top: 39px;
  gap: 24px;
}

.aiers-page .aiers-interview__item--three .aiers-interview__content {
  top: 43px;
  gap: 24px;
}

.aiers-page .aiers-interview__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.aiers-page .aiers-interview__avatar {
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 1px solid #ffc8b7;
  border-radius: 999px;
  background: #ff6b4a;
}

.aiers-page .aiers-interview__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-interview__question {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 324px;
}

.aiers-page .aiers-interview__question span {
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.aiers-page .aiers-interview__question h3 {
  margin: 0;
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.aiers-page .aiers-interview__answer {
  width: 1200px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

.aiers-page .aiers-interview__answer p {
  margin: 0;
}

.aiers-page .aiers-interview__answer p + p {
  margin-top: 0;
}

.aiers-page .aiers-interview__answer strong {
  color: #222;
  font-weight: 700;
}

.aiers-page .aiers-programs {
  height: auto;
  padding: 120px 0;
  background: #fff;
  color: #121212;
}

.aiers-page .aiers-programs__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-programs__group {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
}

.aiers-page .aiers-programs__title {
  width: 1280px;
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-programs__title strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-programs__cards {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 1280px;
}

.aiers-page .aiers-programs__card {
  flex: 1 1 0;
  box-sizing: border-box;
  min-width: 0;
  height: 222px;
  padding: 24px 30px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fafafa;
}

.aiers-page .aiers-programs__card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.aiers-page .aiers-programs__card-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.aiers-page .aiers-programs__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.aiers-page .aiers-programs__icon {
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
}

.aiers-page .aiers-programs__icon--box {
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
}

.aiers-page .aiers-programs__icon--box .aiers-img-wrap,
.aiers-page .aiers-programs__icon--box img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

.aiers-page .aiers-programs__icon--photoshop .aiers-img-wrap,
.aiers-page .aiers-programs__icon--photoshop img {
  position: absolute;
  display: block;
}

.aiers-page .aiers-programs__ps-surface,
.aiers-page .aiers-programs__ps-surface img {
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}

.aiers-page .aiers-programs__ps-logo {
  left: 13.5px;
  top: 15.26px;
  width: 36.102px;
  height: 27.693px;
}

.aiers-page .aiers-programs__ps-logo img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aiers-page .aiers-programs__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.aiers-page .aiers-programs__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #ffe4db;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.18px;
  white-space: nowrap;
}

.aiers-page .aiers-programs__badge--optional {
  background: rgba(18, 18, 18, 0.1);
  color: #666;
}

.aiers-page .aiers-programs__heading h3 {
  margin: 0;
  color: #141413;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-programs__description,
.aiers-page .aiers-programs__notes {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-programs__footnote {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-programs__description p,
.aiers-page .aiers-programs__notes p,
.aiers-page .aiers-programs__footnote {
  margin: 0;
}

.aiers-page .aiers-programs__notes {
  width: 100%;
  color: #333;
  font-weight: 600;
}

.aiers-page .aiers-programs__footnote {
  width: 1280px;
}

.aiers-page .aiers-programs__mobile-break,
.aiers-page .aiers-programs__mobile-copy {
  display: none;
}

.aiers-page .aiers-programs__desktop-dot {
  display: inline;
}

.aiers-page .aiers-schedule {
  height: auto;
  padding: 120px 0;
  background: #fffcfb;
  color: #121212;
}

.aiers-page .aiers-schedule__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-schedule__title {
  width: 1280px;
  margin: 0;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-schedule__title strong {
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-schedule__parts {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-schedule__part {
  display: flex;
  flex-direction: column;
  width: 628px;
  overflow: hidden;
  border-radius: 16px;
}

.aiers-page .aiers-schedule__part--one {
  height: 682px;
}

.aiers-page .aiers-schedule__part--two {
  height: 683px;
}

.aiers-page .aiers-schedule__part-head {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  width: 628px;
  height: 75px;
  padding: 20px 24px;
  border-radius: 16px 16px 0 0;
  background: #ff6b4a;
}

.aiers-page .aiers-schedule__part-head > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 4px 12px;
  border-radius: 4px;
  background: #fff;
  color: #ff6b4a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-schedule__part-head strong {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-schedule__mobile-time {
  display: none;
}

.aiers-page .aiers-schedule__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 628px;
  height: 607px;
  padding: 20px 23px 32px;
  border-right: 1px solid #ffc8b7;
  border-bottom: 1px solid #ffc8b7;
  border-left: 1px solid #ffc8b7;
  border-radius: 0 0 16px 16px;
  background: #fff;
}

.aiers-page .aiers-schedule__part--two .aiers-schedule__body {
  gap: 32px;
  height: 608px;
}

.aiers-page .aiers-schedule__slot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 580px;
}

.aiers-page .aiers-schedule__main {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 580px;
}

.aiers-page .aiers-schedule__main time {
  flex: 0 0 auto;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 19.5px;
  white-space: nowrap;
}

.aiers-page .aiers-schedule__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 448px;
}

.aiers-page .aiers-schedule__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.aiers-page .aiers-schedule__heading span {
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.aiers-page .aiers-schedule__heading h3 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 19.5px;
  white-space: normal;
}

.aiers-page .aiers-schedule__copy p {
  width: 448px;
  margin: 0;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.aiers-page .aiers-schedule__divider {
  display: block;
  width: 580px;
  height: 0;
  border-top: 1px dotted #bdbdbd;
}

.aiers-page .aiers-schedule__result {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  width: 580px;
  height: 49px;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 4px;
  background: #fff3ef;
}

.aiers-page .aiers-schedule__result span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 6px 10px;
  border-radius: 4px;
  background: #ff6b4a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.aiers-page .aiers-schedule__result strong {
  min-width: 0;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.18px;
  white-space: normal;
}

.aiers-page .aiers-journey {
  position: relative;
  height: 782px;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 50%, rgba(255, 255, 255, 0.16), transparent 0.09%, transparent 24%),
    linear-gradient(180deg, #ff7f61 0%, #ff6b4a 52%, #ff6b4a 100%);
  color: #121212;
}

.aiers-page .aiers-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(70, 0, 75, 0.12) 0 1px, transparent 1px);
  background-position: 0 0, 2px 2px;
  background-size: 5px 5px;
  pointer-events: none;
}

.aiers-page .aiers-journey__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-journey__title {
  width: 1280px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-journey__cards {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 1280px;
}

.aiers-page .aiers-journey__card {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  height: 382px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border: 1px solid #ffc8b7;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-journey__card--active {
  border-width: 2px;
}

.aiers-page .aiers-journey__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.aiers-page .aiers-journey__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #ff6b4a;
  border-radius: 4px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-journey__card--active .aiers-journey__badge {
  background: #ff6b4a;
  color: #fff;
}

.aiers-page .aiers-journey__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.aiers-page .aiers-journey__copy h3 {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.aiers-page .aiers-journey__copy p {
  margin: 0;
  color: #ff6b4a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.aiers-page .aiers-journey__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aiers-page .aiers-journey__list li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fafafa;
  color: #121212;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.aiers-page .aiers-journey__card--active .aiers-journey__list li {
  border-color: #ff6b4a;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-weight: 700;
}

.aiers-page .aiers-journey__arrow {
  position: absolute;
  z-index: 2;
  top: 180px;
  width: 97px;
  height: 21px;
  transform: rotate(-90deg);
  transform-origin: center;
}

.aiers-page .aiers-journey__arrow--one {
  left: 371px;
}

.aiers-page .aiers-journey__arrow--two {
  left: 812px;
}

.aiers-page .aiers-promise-one {
  position: relative;
  z-index: 1;
  height: 732px;
  padding: 120px 0;
  overflow: hidden;
  background: #fff;
  color: #121212;
}

.aiers-page .aiers-promise-one__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-promise-one__title {
  width: 1280px;
  color: #121212;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.aiers-page .aiers-promise-one__title strong {
  color: #ff6b4a;
  font: inherit;
}

.aiers-page .aiers-promise-one__items {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-promise-one__item {
  display: flex;
  flex: 0 0 410.667px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

.aiers-page .aiers-promise-one__visual {
  display: block;
  position: relative;
  width: 410.667px;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffe4db;
}

.aiers-page .aiers-promise-one__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-promise-one__item--community .aiers-promise-one__visual img {
  position: absolute;
  top: 20px;
  left: 26.67px;
  width: 358px;
  height: 248px;
}

.aiers-page .aiers-promise-one__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11.75px;
  width: 100%;
}

.aiers-page .aiers-promise-one__copy h3 {
  color: #121212;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.aiers-page .aiers-promise-one__copy h3 span {
  color: #ff6b4a;
}

.aiers-page .aiers-promise-one__copy p {
  width: 100%;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: nowrap;
}

.aiers-page .aiers-promise-two {
  height: 1388px;
  padding: 120px 0;
  overflow: hidden;
  background: #fff3ef;
  color: #121212;
}

.aiers-page .aiers-promise-two__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-promise-two__title {
  width: 1280px;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.aiers-page .aiers-promise-two__title strong {
  color: #ff6b4a;
  font: inherit;
}

.aiers-page .aiers-promise-two__grid {
  display: grid;
  grid-template-columns: repeat(2, 628px);
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-promise-two__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 628px;
  height: 480px;
  padding: 24px;
  border: 1px solid #ffc8b7;
  border-radius: 16px;
  background: #fff;
}

.aiers-page .aiers-promise-two__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  height: 137px;
}

.aiers-page .aiers-promise-two__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 45px;
  padding: 4px 12px;
  border: 1px solid #ff6b4a;
  border-radius: 8px;
  background: rgba(255, 107, 74, 0.1);
  color: #ff6b4a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-promise-two__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.aiers-page .aiers-promise-two__copy h3 {
  width: 100%;
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
  white-space: nowrap;
}

.aiers-page .aiers-promise-two__copy p {
  width: 580px;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.aiers-page .aiers-promise-two__mobile-copy {
  display: none;
}

.aiers-page .aiers-promise-two__visual {
  display: block;
  position: relative;
  width: 580px;
  height: 279px;
  min-height: 279px;
  overflow: hidden;
  border-radius: 4px;
  background: #121212;
}

.aiers-page .aiers-promise-two__visual img,
.aiers-page .aiers-promise-two__visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-promise-two__visual--refund {
  background: #ffe4db;
}

.aiers-page .aiers-promise-two__visual--refund img {
  object-fit: contain;
}

.aiers-page .aiers-apply {
  height: 1371px;
  padding: 120px 0;
  overflow: hidden;
  background: #fff8f5;
  color: #121212;
}

.aiers-page .aiers-apply__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 1280px;
  margin: 0 auto;
}

.aiers-page .aiers-apply__title {
  width: 1280px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.aiers-page .aiers-apply__title strong {
  color: #ff6b4a;
  font: inherit;
}

.aiers-page .aiers-apply__mobile-break {
  display: none;
}

.aiers-page .aiers-apply__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-apply__price {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1280px;
}

.aiers-page .aiers-apply__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.aiers-page .aiers-apply__caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ff6b4a;
  color: #faf9f5;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.aiers-page .aiers-apply__amount {
  display: flex;
  align-items: flex-end;
  gap: 17px;
  height: 25px;
  white-space: nowrap;
}

.aiers-page .aiers-apply__amount strong {
  color: #ff6b4a;
  font-size: 42px;
  font-weight: 700;
  line-height: 19.5px;
}

.aiers-page .aiers-apply__amount s {
  color: #999;
  font-size: 22px;
  font-weight: 500;
  line-height: 19.5px;
  text-decoration-thickness: 1px;
}

.aiers-page .aiers-apply__discount {
  width: 1280px;
  color: #121212;
  font-size: 28px;
  font-weight: 500;
  line-height: 19.5px;
}

.aiers-page .aiers-apply__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-apply__summary-cards {
  display: flex;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-apply__summary-card {
  display: flex;
  flex: 1 1 0;
  height: 140px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 20px 24px;
  border: 1px solid #ff6b4a;
  border-radius: 12px;
  background: rgba(255, 107, 74, 0.1);
}

.aiers-page .aiers-apply__summary-card .aiers-img-wrap {
  display: block;
  width: 24px;
  height: 24px;
}

.aiers-page .aiers-apply__summary-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aiers-page .aiers-apply__summary-card span {
  color: #ff6b4a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.aiers-page .aiers-apply__summary-card strong {
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-apply__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 1280px;
  margin: 0;
  padding: 20px 24px;
  border: 1px solid #ffc8b7;
  border-radius: 12px;
  background: #fff;
  list-style: none;
}

.aiers-page .aiers-apply__benefits li {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 27px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #e6dfd8;
}

.aiers-page .aiers-apply__benefits li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.aiers-page .aiers-apply__benefits img {
  display: block;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.aiers-page .aiers-apply__benefits span {
  color: #121212;
  font-size: 20px;
  font-weight: 400;
  line-height: 19.5px;
  white-space: nowrap;
}

.aiers-page .aiers-apply__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-apply__remaining {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1280px;
  height: 70px;
  padding: 20px 24px;
  border: 1px solid #ff6b4a;
  border-radius: 8px;
  background: rgba(255, 107, 74, 0.1);
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-apply__remaining span,
.aiers-page .aiers-apply__remaining time {
  color: #ff6b4a;
}

.aiers-page .aiers-apply__buttons {
  display: flex;
  gap: 24px;
  width: 1280px;
}

.aiers-page .aiers-apply__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 628px;
  height: 70px;
  padding: 16px 32px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-apply__button--primary {
  background: #ff6b4a;
  color: #fff;
}

.aiers-page .aiers-apply__button--secondary {
  background: #fff;
  color: #000;
}

.aiers-page .aiers-faq {
  min-height: 0;
  height: auto;
  padding: 144px max(24px, calc((100% - 1280px) / 2)) 180px;
  background: #fff;
}

.aiers-page .aiers-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.aiers-page .aiers-faq__title {
  width: 100%;
  height: 50px;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.aiers-page .aiers-faq__accordion {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: auto;
}

.aiers-page .aiers-faq__item {
  box-sizing: border-box;
  flex: 0 0 auto;
  border-top: 1px solid #e5e5e5;
  overflow: hidden;
}

.aiers-page .aiers-faq__item--open {
  padding: 19px 24px 20px;
  background: #fff8f5;
}

.aiers-page .aiers-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 27px;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.aiers-page .aiers-faq__item:not(.aiers-faq__item--open) .aiers-faq__question {
  min-height: 66px;
  height: auto;
  padding: 19px 24px 20px;
}

.aiers-page .aiers-faq__question-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  white-space: normal;
}

.aiers-page .aiers-faq__number {
  flex: 0 0 auto;
  color: #ff6b4a;
}

.aiers-page .aiers-faq__question-copy span:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.aiers-page .aiers-faq__chevron {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 0;
  background: center / 100% 100% no-repeat url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M5%209L12%2016L19%209'%20stroke='%23737373'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  border: 0;
  transform: none;
}

.aiers-page .aiers-faq__chevron--up {
  transform: rotate(180deg);
}

.aiers-page .aiers-faq__answer {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 14px;
  padding-left: 32px;
  border-radius: 8px;
}

.aiers-page .aiers-faq__item--open .aiers-faq__answer {
  display: block;
}

.aiers-page .aiers-faq__answer p {
  width: 100%;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.aiers-page .aiers-faq__answer p + p {
  margin-top: 12px;
}

.aiers-page .aiers-faq__answer strong {
  color: #333;
  font-weight: 700;
}

.aiers-page .aiers-recommend {
  height: 1188px;
  padding: 120px 312px;
  overflow: hidden;
  background: #faf9f5;
}

.aiers-page .aiers-recommend__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 1296px;
}

.aiers-page .aiers-recommend__group {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.aiers-page .aiers-recommend__title {
  display: flex;
  align-items: center;
  width: 1280px;
  height: 48px;
  color: #141413;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.aiers-page .aiers-recommend__title span {
  display: inline;
}

.aiers-page .aiers-recommend__title strong {
  display: inline;
  margin-left: 8px;
  color: #ff6000;
  font: inherit;
}

.aiers-page .aiers-recommend__rail {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 1280px;
  overflow: hidden;
}

.aiers-page .aiers-recommend__rail--active {
  height: 344px;
}

.aiers-page .aiers-recommend__rail--notify {
  height: 364px;
}

.aiers-page .aiers-recommend__card {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.aiers-page .aiers-recommend__card--price {
  height: 344px;
}

.aiers-page .aiers-recommend__card--notify {
  height: 364px;
}

.aiers-page .aiers-recommend__thumb {
  display: block;
  width: 280px;
  height: 158px;
  overflow: hidden;
}

.aiers-page .aiers-recommend__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-recommend__body {
  position: absolute;
  top: 158px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 280px;
  height: 120px;
  padding: 16px 24px 8px 18px;
}

.aiers-page .aiers-recommend__card--notify .aiers-recommend__body {
  height: 140px;
}

.aiers-page .aiers-recommend__teacher {
  color: #6e6e73;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.aiers-page .aiers-recommend__body h3 {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.7px;
  white-space: nowrap;
}

.aiers-page .aiers-recommend__desc {
  display: -webkit-box;
  width: 238px;
  margin-top: 4px;
  overflow: hidden;
  color: #737373;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aiers-page .aiers-recommend__price {
  position: absolute;
  top: 282px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 107px;
  text-align: right;
}

.aiers-page .aiers-recommend__price s {
  color: #999;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.5px;
}

.aiers-page .aiers-recommend__price strong {
  color: #ff6000;
  font-size: 22px;
  font-weight: 700;
  line-height: 19.5px;
}

.aiers-page .aiers-recommend__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 97px;
  height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ff6000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.144px;
  box-shadow: 0 0 10px rgba(255, 96, 0, 0.12);
  white-space: nowrap;
}

.aiers-page .aiers-recommend__badge img {
  width: 12px;
  height: 12px;
}

.aiers-page .aiers-recommend__button {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 46px;
  padding: 14px 17px;
  border: 1px solid #ff6000;
  border-radius: 8px;
  background: #ff6000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.196px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.aiers-page .aiers-recommend__button img {
  width: 16px;
  height: 16px;
}

.aiers-page .aiers-deadline {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #121212;
}

.aiers-page .aiers-deadline__glow {
  position: absolute;
  top: 311.71px;
  left: 50%;
  width: 1920px;
  height: 298px;
  opacity: 0.7;
  background: radial-gradient(ellipse 80.07px 29.8px at 50% 0, #1a1a1a 0%, rgba(41, 41, 41, 0) 100%);
  transform: translateX(-50%) scaleX(12);
  transform-origin: center top;
}

.aiers-page .aiers-deadline__inner {
  position: absolute;
  top: 119.71px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 632px;
  transform: translateX(-50%);
}

.aiers-page .aiers-deadline__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 632px;
}

.aiers-page .aiers-deadline__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 632px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.aiers-page .aiers-deadline__eyebrow {
  color: #ff6b4a;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.8px;
}

.aiers-page .aiers-deadline__heading h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.6px;
}

.aiers-page .aiers-deadline__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 632px;
}

.aiers-page .aiers-deadline__timer--mobile {
  display: none;
}

.aiers-page .aiers-deadline__digits {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 631.86px;
  height: 87px;
}

.aiers-page .aiers-deadline__unit {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 129.84px;
  height: 87px;
}

.aiers-page .aiers-deadline__unit span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62.92px;
  height: 87px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, #444 0%, #000 100%);
  color: #ff6b4a;
  font-family: Inter, Pretendard, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.aiers-page .aiers-deadline__colon {
  position: relative;
  display: block;
  align-self: center;
  flex: 0 0 7.5px;
  width: 7.5px;
  height: 26.17px;
  background: center / 100% 100% no-repeat url("data:image/svg+xml,%3Csvg%20viewBox='0%200%207.5%2026.165'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle%20cx='3.75'%20cy='3.75'%20r='3.75'%20fill='white'%20fill-opacity='0.18'/%3E%3Ccircle%20cx='3.75'%20cy='22.415'%20r='3.75'%20fill='white'%20fill-opacity='0.18'/%3E%3C/svg%3E");
}

.aiers-page .aiers-deadline__labels {
  display: flex;
  align-items: center;
  gap: 103px;
  width: 573px;
  height: 19px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Inter, Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.aiers-page .aiers-deadline__labels span {
  flex: 0 0 66px;
}

.aiers-page .aiers-deadline__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 58px;
  padding: 17px 20px;
  border-radius: 8px;
  background: #ff6b4a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.225px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .aiers-page .aiers-hero {
    --aiers-hero-stage: 100vw;
    container-type: inline-size;
    height: clamp(435px, calc(var(--aiers-hero-stage) * 1.36), 720px);
    background: #ff6b4a;
  }

  .aiers-page .aiers-hero::after {
    content: "";
    position: absolute;
    top: calc(var(--aiers-hero-stage) * 0.59);
    left: 0;
    width: 100%;
    height: calc(var(--aiers-hero-stage) * 0.22);
    background: linear-gradient(180deg, #ff6b4a 0%, rgba(255, 107, 74, 0.86) 48%, rgba(255, 107, 74, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .aiers-page .aiers-hero__visual {
    top: calc(var(--aiers-hero-stage) * 0.68);
    left: calc(((100vw - var(--aiers-hero-stage)) / 2) - (var(--aiers-hero-stage) * 0.29));
    width: calc(var(--aiers-hero-stage) * 1.58);
    height: auto;
    aspect-ratio: 16 / 9;
    background-image: url("./figma/hero/hero-3dchar-mobile-poster.webp");
  }

  .aiers-page .aiers-hero__visual .aiers-hero__video--desktop {
    display: none;
  }

  .aiers-page .aiers-hero__visual .aiers-hero__video--mobile {
    display: block;
  }

  .aiers-page .aiers-hero__wash {
    top: 0;
    left: 50%;
    width: var(--aiers-hero-stage);
    height: calc(var(--aiers-hero-stage) * 1.112);
    transform: translateX(-50%) rotate(90deg);
    background: linear-gradient(-88.04deg, rgba(255, 107, 74, 0) 4.68%, #ff6b4a 40.64%);
  }

  .aiers-page .aiers-hero__noise {
    display: none;
  }

  .aiers-page .aiers-hero__copy {
    top: calc(var(--aiers-hero-stage) * 0.072);
    left: calc(((100vw - var(--aiers-hero-stage)) / 2) + (var(--aiers-hero-stage) * 0.064));
    width: calc(var(--aiers-hero-stage) * 0.8);
    height: auto;
    gap: 12px;
  }

  .aiers-page .aiers-hero__heading-group {
    gap: 8px;
  }

  .aiers-page .aiers-hero__intro {
    gap: 4px;
  }

  .aiers-page .aiers-hero__badge {
    padding: 4px 8px;
    border-width: 0.5px;
    border-radius: 4px;
    font-size: clamp(11px, calc(var(--aiers-hero-stage) * 0.032), 12px);
    letter-spacing: 0;
  }

  .aiers-page .aiers-hero__eyebrow {
    font-size: clamp(12px, calc(var(--aiers-hero-stage) * 0.0347), 13px);
    font-weight: 600;
    white-space: nowrap;
  }

  .aiers-page .aiers-hero h1 {
    font-size: clamp(26px, calc(var(--aiers-hero-stage) * 0.08), 30px);
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-hero__description {
    color: #fff;
    font-size: clamp(11px, calc(var(--aiers-hero-stage) * 0.032), 12px);
    line-height: 1.5;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-info {
    min-height: 466px;
    padding: 40px 16px;
  }

  .aiers-page .aiers-info__inner {
    width: 100%;
  }

  .aiers-page .aiers-info h2 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 25.5px;
  }

  .aiers-page .aiers-info__list {
    height: 232px;
    margin-bottom: 12px;
    padding: 16px;
    border: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px #e6e6e6;
    justify-content: space-between;
    gap: 0;
  }

  .aiers-page .aiers-info__item,
  .aiers-page .aiers-info__item:first-child,
  .aiers-page .aiers-info__item:last-child {
    position: relative;
    min-height: 20px;
    height: 20px;
    align-items: center;
    border-bottom: 0;
  }

  .aiers-page .aiers-info__item:not(:last-child)::after {
    position: absolute;
    top: 28px;
    left: 0;
    width: 311px;
    height: 1px;
    background: #e6e6e6;
    content: "";
  }

  .aiers-page .aiers-info__label {
    flex-basis: auto;
    gap: 8px;
    height: 20px;
    font-size: 12px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-info__label img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
  }

  .aiers-page .aiers-info__item strong {
    margin-left: auto;
    min-height: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    white-space: nowrap;
  }

  .aiers-page .aiers-info__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aiers-page .aiers-info__remaining {
    width: 100%;
    height: 45px;
    padding: 12px 16px;
    border: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px #e6e6e6;
    font-size: 14px;
  }

  .aiers-page .aiers-info__button {
    width: 100%;
    height: 47px;
    padding: 10px 8px;
    border-radius: 4px;
    font-size: 18px;
  }

  .aiers-page .aiers-info__pc {
    display: none;
  }

  .aiers-page .aiers-info__mo {
    display: inline;
  }

  .aiers-page .aiers-price {
    min-height: 689px;
    padding: 40px 16px;
  }

  .aiers-page .aiers-price__inner {
    width: 343px;
    max-width: 100%;
  }

  .aiers-page .aiers-price__lead {
    align-items: flex-start;
    gap: 12px;
    width: 343px;
    max-width: 100%;
    height: auto;
    white-space: normal;
  }

  .aiers-page .aiers-price__lead h2 {
    width: 343px;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-price__lead p {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-price__mo-break {
    display: block;
  }

  .aiers-page .aiers-price__trend--desktop,
  .aiers-page .aiers-price__baseline--desktop,
  .aiers-page .aiers-price__stem--desktop,
  .aiers-page .aiers-price__dot--desktop {
    display: none;
  }

  .aiers-page .aiers-price__trend--mobile,
  .aiers-page .aiers-price__baseline--mobile,
  .aiers-page .aiers-price__stem--mobile,
  .aiers-page .aiers-price__dot--mobile {
    display: block;
  }

  .aiers-page .aiers-price__chart {
    width: 343px;
    height: 201px;
    margin-top: 32px;
  }

  .aiers-page .aiers-price__trend {
    top: 0;
    left: 43px;
    width: 275px;
    height: 87px;
  }

  .aiers-page .aiers-price__baseline {
    top: 109px;
    left: 0;
    bottom: auto;
    width: 343px;
    height: 1px;
  }

  .aiers-page .aiers-price__discount {
    top: 6px;
    left: 0;
    width: 89px;
    height: 88px;
  }

  .aiers-page .aiers-price__discount span {
    width: 88px;
    min-width: 88px;
    height: 36px;
    padding: 6px 13px;
    border-radius: 66px;
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .aiers-page .aiers-price__stem {
    top: 24px;
    left: 45px;
    width: 1px;
    height: 62px;
  }

  .aiers-page .aiers-price__dot {
    top: 74.75px;
    left: 37.76px;
    width: 13.25px;
    height: 13.25px;
  }

  .aiers-page .aiers-price__bars {
    top: 32px;
    left: 0;
    gap: 0;
    width: 343px;
  }

  .aiers-page .aiers-price__bar-item {
    width: 85.75px;
  }

  .aiers-page .aiers-price__bar {
    width: 45.13px;
    margin-bottom: 6.4px;
    border-radius: 4px 4px 0 0;
  }

  .aiers-page .aiers-price__bar-item--early .aiers-price__bar {
    height: 33.47px;
  }

  .aiers-page .aiers-price__bar-item--first .aiers-price__bar {
    height: 51.15px;
  }

  .aiers-page .aiers-price__bar-item--closed .aiers-price__bar {
    height: 81.99px;
  }

  .aiers-page .aiers-price__bar-item--second .aiers-price__bar {
    height: 109.07px;
  }

  .aiers-page .aiers-price__bar-item strong,
  .aiers-page .aiers-price__bar-item em {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-price__bar-item strong {
    color: #666;
  }

  .aiers-page .aiers-price__bar-item--early strong {
    color: #121212;
  }

  .aiers-page .aiers-price__card {
    width: 343px;
    max-width: 100%;
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
  }

  .aiers-page .aiers-price__card-content {
    gap: 10px;
  }

  .aiers-page .aiers-price__card-head {
    width: 311px;
    height: 126px;
  }

  .aiers-page .aiers-price__card-title {
    top: 0;
    left: 0;
    width: 221px;
  }

  .aiers-page .aiers-price__card-title h3 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.4px;
    white-space: nowrap;
  }

  .aiers-page .aiers-price__card-title p {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 700;
  }

  .aiers-page .aiers-price__amount {
    top: 77px;
    right: 0;
  }

  .aiers-page .aiers-price__amount s {
    font-size: 13px;
    line-height: 1.5;
  }

  .aiers-page .aiers-price__amount strong {
    font-size: 24px;
    line-height: 1.5;
  }

  .aiers-page .aiers-price__button {
    width: 311px;
    height: 47px;
    padding: 16px 12px;
    border-radius: 4px;
    font-size: 18px;
  }

  .aiers-page .aiers-mobile-break {
    display: block;
  }

  .aiers-page .aiers-cheapest {
    padding: 80px 0 40px;
  }

  .aiers-page .aiers-cheapest > .aiers-wrap {
    width: calc(100% - 32px);
    max-width: 520px;
    padding: 0;
  }

  .aiers-page .aiers-cheapest__inner {
    gap: 24px;
  }

  .aiers-page .aiers-cheapest__copy {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    min-height: 0;
    gap: 12px;
    margin-bottom: 0;
  }

  .aiers-page .aiers-cheapest__copy h2 {
    font-size: 24px;
    line-height: 1.25;
    white-space: normal;
  }

  .aiers-page .aiers-cheapest__copy p {
    font-size: 14px;
  }

  .aiers-page .aiers-cheapest__chart {
    width: 100%;
    max-width: none;
    height: 201px;
    margin-top: 8px;
    overflow: visible;
  }

  .aiers-page .aiers-cheapest__trend--desktop,
  .aiers-page .aiers-cheapest__baseline--desktop {
    display: none;
  }

  .aiers-page .aiers-cheapest__trend--mobile {
    z-index: 1;
    display: block;
    left: 12.54%;
    top: 82.67px;
    width: 80.43%;
    height: 8.66px;
    max-width: none;
    opacity: 0.7;
    filter: brightness(0);
    transform: rotate(-18.43deg);
    transform-origin: left center;
  }

  .aiers-page .aiers-cheapest__baseline--mobile {
    display: block;
    left: 0;
    top: 141px;
    width: 100%;
    max-width: none;
    height: 1px;
  }

  .aiers-page .aiers-cheapest__discount {
    left: 0;
    top: 6px;
    width: 88px;
    height: 88px;
  }

  .aiers-page .aiers-cheapest__discount span {
    width: 100%;
    min-width: 100%;
    height: 36px;
    padding: 6px 13px;
    font-size: 16px;
  }

  .aiers-page .aiers-cheapest__discount i {
    left: 37px;
    top: 24px;
    width: 14px;
    height: 64px;
  }

  .aiers-page .aiers-cheapest__discount i::before {
    left: 6px;
    height: 62px;
  }

  .aiers-page .aiers-cheapest__discount i::after {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .aiers-page .aiers-cheapest__bars {
    left: 0;
    top: 32px;
    width: 100%;
    gap: 0;
  }

  .aiers-page .aiers-cheapest__bars article {
    width: 25%;
    gap: 6px;
  }

  .aiers-page .aiers-cheapest__bars i {
    width: 45px;
    border-radius: 2px 2px 0 0;
  }

  .aiers-page .aiers-cheapest__bars article:nth-child(1) i {
    height: 33px;
  }

  .aiers-page .aiers-cheapest__bars article:nth-child(2) i {
    height: 51px;
  }

  .aiers-page .aiers-cheapest__bars article:nth-child(3) i {
    height: 82px;
  }

  .aiers-page .aiers-cheapest__bars article:nth-child(4) i {
    height: 109px;
  }

  .aiers-page .aiers-cheapest__bars p,
  .aiers-page .aiers-cheapest__bars strong {
    font-size: 12px;
  }

  .aiers-page .aiers-cheapest__offer {
    position: relative;
    display: block;
    height: 245px;
    padding: 16px;
    overflow: hidden;
  }

  .aiers-page .aiers-cheapest__offer h3 {
    font-size: 20px;
    white-space: nowrap;
  }

  .aiers-page .aiers-cheapest__offer p {
    margin-top: 2px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 700;
  }

  .aiers-page .aiers-cheapest__offer-price {
    position: absolute;
    right: 18px;
    bottom: 90px;
  }

  .aiers-page .aiers-cheapest__offer s {
    font-size: 14px;
  }

  .aiers-page .aiers-cheapest__offer strong {
    font-size: 28px;
  }

  .aiers-page .aiers-cheapest__offer-cta {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-height: 47px;
    padding: 16px 12px;
    font-size: 18px;
  }

  .aiers-page .aiers-refund {
    height: 269px;
    background: linear-gradient(180deg, #ff6b4a 0%, #c9341f 100%);
  }

  .aiers-page .aiers-refund__copy {
    top: 44px;
    left: 50%;
    width: 324px;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .aiers-page .aiers-refund__headline-group {
    gap: 12px;
    width: 240px;
  }

  .aiers-page .aiers-refund__eyebrow {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.125px;
  }

  .aiers-page .aiers-refund h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.575px;
  }

  .aiers-page .aiers-refund__description {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
  }

  .aiers-page .aiers-refund__mail--desktop-left,
  .aiers-page .aiers-refund__mail--desktop-bottom,
  .aiers-page .aiers-refund__mail--desktop-top {
    display: none;
  }

  .aiers-page .aiers-refund__mail--mobile-left,
  .aiers-page .aiers-refund__mail--mobile-top {
    display: block;
  }

  .aiers-page .aiers-refund__mail--mobile-left {
    top: 153px;
    left: -39px;
    width: 137px;
    height: 137px;
    transform: rotate(-15deg);
  }

  .aiers-page .aiers-refund__mail--mobile-top {
    top: -40px;
    left: 256px;
    width: 109px;
    height: 109px;
    transform: rotate(30deg);
  }

  .aiers-page .aiers-section-nav {
    align-items: center;
    height: 41px;
    backdrop-filter: none;
    box-shadow: 0 6px 18px rgba(18, 18, 18, 0.05);
  }

  .aiers-page #intro,
  .aiers-page #curriculum,
  .aiers-page #instructor,
  .aiers-page #faq {
    scroll-margin-top: calc(var(--aiers-section-nav-top, 0px) + 41px);
  }

  .aiers-page .aiers-section-nav__link {
    flex: 1 1 0;
    height: 41px;
    padding: 10px 0;
    color: #5e5d59;
    font-size: 14px;
    line-height: 20.8px;
  }

  .aiers-page .aiers-section-nav__link.is-active {
    color: #ff6b4a;
  }

  .aiers-page .aiers-results {
    height: 1039px;
    padding: 40px 0 60px;
  }

  .aiers-page .aiers-results__title {
    top: 40px;
    left: 16px;
    width: 343px;
  }

  .aiers-page .aiers-results__title h2 {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-results__title p,
  .aiers-page .aiers-results__teasers h3 {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.18px;
  }

  .aiers-page .aiers-results__title p {
    top: 84px;
  }

  .aiers-page .aiers-results__visuals {
    top: 169px;
    left: 0;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }

  .aiers-page .aiers-results__row {
    gap: 10px;
    width: max-content;
    --aiers-results-distance: 1412px;
  }

  .aiers-page .aiers-results__row--one {
    top: 0;
    left: -578px;
  }

  .aiers-page .aiers-results__row--two {
    top: 175px;
    left: -464px;
  }

  .aiers-page .aiers-results__row img {
    width: 166.5px;
    height: 165px;
    border-radius: 12px;
  }

  .aiers-page .aiers-results__fade {
    display: none;
  }

  .aiers-page .aiers-results__teasers {
    top: 549px;
    left: 16px;
    gap: 20px;
    width: 343px;
    overflow: visible;
  }

  .aiers-page .aiers-results__teasers h3 {
    height: auto;
  }

  .aiers-page .aiers-results__teaser-row {
    gap: 10px;
    width: 343px;
  }

  .aiers-page .aiers-results__teaser-row--desktop {
    display: none !important;
  }

  .aiers-page .aiers-results__teaser-scroll {
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: -16px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
  }

  .aiers-page .aiers-results__teaser-track {
    animation: aiers-results-teaser-scroll 28s linear infinite;
    will-change: transform;
  }

  .aiers-page .aiers-results__teaser-scroll img,
  .aiers-page .aiers-results__teaser-scroll video {
    display: block;
    flex: 0 0 auto;
    width: 290px;
    height: 387px;
    border-radius: 12px;
    object-fit: cover;
  }

  @media (prefers-reduced-motion: reduce) {
    .aiers-page .aiers-results__row {
      animation: none;
    }

    .aiers-page .aiers-results__teaser-scroll {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .aiers-page .aiers-results__teaser-scroll::-webkit-scrollbar {
      display: none;
    }

    .aiers-page .aiers-results__teaser-track {
      animation: none;
    }
  }

  .aiers-page .aiers-ip-character {
    display: flex;
    min-height: 624px;
    align-items: center;
    padding: 60px 16px 80px;
  }

  .aiers-page .aiers-ip-character__inner {
    width: min(343px, 100%);
  }

  .aiers-page .aiers-ip-character h2 {
    min-height: 90px;
    padding: 0;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ip-character__headline--pc {
    display: none;
  }

  .aiers-page .aiers-ip-character__headline--mo {
    display: block;
  }

  .aiers-page .aiers-ip-character__viewport {
    margin-top: 40px;
    width: calc(100% + 32px);
    margin-left: -16px;
    height: 354px;
  }

  .aiers-page .aiers-ip-character__cards {
    --ip-card-gap: 16px;
    --ip-card-width: 300px;
    --ip-roll-distance: 1264px;
    --ip-roll-duration: 64s;
    gap: var(--ip-card-gap);
    height: 354px;
    margin-left: 16px;
    animation-play-state: paused;
  }

  .aiers-page .aiers-ip-character.is-aiers-ip-roll-active .aiers-ip-character__cards {
    animation-play-state: running;
  }

  .aiers-page .aiers-ip-character__card {
    height: 354px;
    border-radius: 24px;
  }

  .aiers-page .aiers-ip-character__copy {
    top: 19px;
    left: 18px;
    width: 244px;
  }

  .aiers-page .aiers-ip-character__copy p {
    margin-bottom: 6px;
    padding: 6px 10px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ip-character__copy h3 {
    font-size: 24px;
    line-height: 1.34;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ip-character__copy strong {
    font-size: 40px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ip-character__blob--gold-small {
    top: 35px;
    left: 226px;
    width: 148px;
    height: 144px;
  }

  .aiers-page .aiers-ip-character__blob--gold-lower,
  .aiers-page .aiers-ip-character__blob--pink-main,
  .aiers-page .aiers-ip-character__blob--blue-bottom,
  .aiers-page .aiers-ip-character__blob--coral-lower {
    display: none;
  }

  .aiers-page .aiers-ip-character__blob--gold-large {
    top: -108px;
    left: -119px;
    width: 263px;
    height: 277px;
    background-image: url("./figma/ip-character/blob-gold-mobile-large.svg");
  }

  .aiers-page .aiers-ip-character__blob--pink-lower {
    top: 184px;
    left: -123px;
    width: 223px;
    height: 216px;
    background-image: url("./figma/ip-character/blob-pink-mobile-lower.svg");
    transform: rotate(-170deg);
  }

  .aiers-page .aiers-ip-character__blob--blue-main {
    top: -244px;
    left: 61px;
    width: 411px;
    height: 399px;
    transform: rotate(-46deg);
  }

  .aiers-page .aiers-ip-character__blob--blue-left {
    top: 177px;
    left: -102px;
    width: 191px;
    height: 186px;
  }

  .aiers-page .aiers-ip-character__blob--coral-main {
    top: -149px;
    left: -99px;
    width: 433px;
    height: 424px;
  }

  .aiers-page .aiers-ip-character__card--gold .aiers-ip-character__shadow {
    top: 317px;
    left: 152px;
    width: 122px;
    height: 19px;
  }

  .aiers-page .aiers-ip-character__card--pink .aiers-ip-character__shadow {
    top: 318px;
    left: 150px;
    width: 122px;
    height: 19px;
  }

  .aiers-page .aiers-ip-character__card--blue .aiers-ip-character__shadow {
    top: 317px;
    left: 150px;
    width: 119px;
    height: 19px;
  }

  .aiers-page .aiers-ip-character__card--coral .aiers-ip-character__shadow {
    top: 316px;
    left: 157px;
    width: 115px;
    height: 19px;
  }

  .aiers-page .aiers-ip-character__card--gold img {
    top: 177px;
    left: 134px;
    width: 159px;
    height: 164px;
  }

  .aiers-page .aiers-ip-character__card--pink img {
    top: 174px;
    left: 144px;
    width: 127px;
    height: 169px;
  }

  .aiers-page .aiers-ip-character__card--blue img {
    top: 192px;
    left: 142px;
    width: 136px;
    height: 140px;
  }

  .aiers-page .aiers-ip-character__card--coral img {
    top: 179px;
    left: 137px;
    width: 155px;
    height: 160px;
  }

  .aiers-page .aiers-brand-proof {
    padding: 60px 0 40px;
  }

  .aiers-page .aiers-brand-proof__content {
    width: min(343px, calc(100% - 32px));
  }

  .aiers-page .aiers-brand-proof__copy h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-brand-proof__title--desktop {
    display: none;
  }

  .aiers-page .aiers-brand-proof__title--mobile {
    display: block;
  }

  .aiers-page .aiers-brand-proof__copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .aiers-page .aiers-brand-proof__copy p br {
    display: none;
  }

  .aiers-page .aiers-brand-proof__video-frame {
    height: 200px;
    margin-top: 26px;
    border-radius: 7px;
  }

  .aiers-page .aiers-brand-proof__marquee {
    width: min(343px, calc(100% - 32px));
    height: 76px;
    margin-top: 26px;
    overflow: visible;
  }

  .aiers-page .aiers-brand-proof__marquee::before,
  .aiers-page .aiers-brand-proof__marquee::after {
    display: none;
  }

  .aiers-page .aiers-brand-proof__track {
    animation-duration: 36s;
  }

  .aiers-page .aiers-brand-proof__set {
    gap: 30px;
    padding-right: 30px;
  }

  .aiers-page .aiers-brand-proof__logo {
    min-width: 189px;
    height: 76px;
    gap: 12px;
  }

  .aiers-page .aiers-brand-proof__laurel {
    width: 28px;
    height: 70px;
    flex-basis: 28px;
  }

  .aiers-page .aiers-brand-proof__logo-copy {
    min-width: 109px;
  }

  .aiers-page .aiers-brand-proof__logo-copy span {
    font-size: 12px;
  }

  .aiers-page .aiers-brand-proof__logo-copy strong {
    margin-top: 6px;
    font-size: 28px;
  }

  .aiers-page .aiers-transition-band {
    height: 284px;
  }

  .aiers-page .aiers-transition-band__ornament--left {
    top: -134px;
    left: -148px;
    width: 396.23px;
    height: 399.76px;
    transform: none;
    --aiers-transition-ornament-w: 286.53px;
    --aiers-transition-ornament-h: 296.17px;
    --aiers-transition-ornament-rotate: -30deg;
  }

  .aiers-page .aiers-transition-band__ornament--right {
    top: 102px;
    left: 114px;
    width: 412.03px;
    height: 412.03px;
    transform: none;
    --aiers-transition-ornament-w: 286.53px;
    --aiers-transition-ornament-h: 296.17px;
    --aiers-transition-ornament-rotate: 135deg;
  }

  .aiers-page .aiers-transition-band p {
    width: 298px;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-transition-band__pc {
    display: none;
  }

  .aiers-page .aiers-transition-band__after-break {
    display: block;
  }

  .aiers-page .aiers-transition-band__mo {
    display: block;
  }

  .aiers-page .aiers-ai-image {
    height: 864px;
    padding: 60px 16px;
    background-color: #1e1e1e;
  }

  .aiers-page .aiers-ai-image::before {
    background:
      radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0 12%, rgba(0, 0, 0, 0) 54%),
      url("./figma/ai-image/bg-texture.webp") center / cover no-repeat;
    transform: rotate(90deg) scale(2.4);
  }

  .aiers-page .aiers-ai-image__inner {
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }

  .aiers-page .aiers-ai-image h2 {
    width: 100%;
    align-self: auto;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
    text-align: center;
  }

  .aiers-page .aiers-ai-image__mo-break {
    display: block;
  }

  .aiers-page .aiers-ai-image__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
  }

  .aiers-page .aiers-ai-image__card,
  .aiers-page .aiers-ai-image__card--one,
  .aiers-page .aiers-ai-image__card--two,
  .aiers-page .aiers-ai-image__card--three {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    height: 188px;
    padding: 20px;
    border-radius: 6px;
    transform: rotate(0);
    backdrop-filter: blur(4.258px);
    box-shadow: 0 0 10.646px rgba(0, 0, 0, 0.12);
  }

  .aiers-page .aiers-ai-image__card::before {
    display: block;
    width: 180px;
    height: 180px;
    background: #ff6b4a;
    opacity: 0.08;
    filter: blur(46px);
  }

  .aiers-page .aiers-ai-image__card--one::before {
    left: 210px;
    top: 84px;
  }

  .aiers-page .aiers-ai-image__card--two::before {
    left: 204px;
    top: 99px;
  }

  .aiers-page .aiers-ai-image__card--three::before {
    left: 211px;
    top: 80px;
  }

  .aiers-page .aiers-ai-image__card-copy,
  .aiers-page .aiers-ai-image__card--two .aiers-ai-image__card-copy,
  .aiers-page .aiers-ai-image__card--three .aiers-ai-image__card-copy {
    position: absolute;
    z-index: 2;
    top: 19px;
    left: 19px;
    width: 303px;
  }

  .aiers-page .aiers-ai-image__role {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 13.2px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ai-image__card h3 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ai-image__desc {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.43;
    letter-spacing: 0;
  }

  .aiers-page .aiers-ai-image__card--one .aiers-img-wrap {
    z-index: 1;
    top: 52px;
    right: -1px;
    left: auto;
    width: 147.98px;
    height: 177.733px;
  }

  .aiers-page .aiers-ai-image__card--two .aiers-img-wrap {
    z-index: 1;
    top: 68px;
    right: -4px;
    left: auto;
    width: 150px;
    height: 150px;
  }

  .aiers-page .aiers-ai-image__card--three .aiers-img-wrap {
    z-index: 1;
    top: 51px;
    right: -25px;
    left: auto;
    width: 185px;
    height: 185px;
  }

  .aiers-page .aiers-ai-image__card img,
  .aiers-page .aiers-ai-image__card--two img {
    width: 100%;
    height: 100%;
  }

  .aiers-page .aiers-workflow-results {
    height: 1502px;
    padding: 60px 16px;
  }

  .aiers-page .aiers-workflow-results__inner {
    gap: 40px;
    width: 100%;
  }

  .aiers-page .aiers-workflow-results__headline {
    gap: 12px;
  }

  .aiers-page .aiers-workflow-results__headline h2 {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-workflow-results__title-desktop {
    display: none;
  }

  .aiers-page .aiers-workflow-results__title-mobile {
    display: inline;
  }

  .aiers-page .aiers-workflow-results__headline p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.14px;
  }

  .aiers-page .aiers-workflow-results__desktop-break {
    display: none;
  }

  .aiers-page .aiers-workflow-results__mobile-break {
    display: block;
  }

  .aiers-page .aiers-workflow-results__cards {
    gap: 10px;
    width: 100%;
  }

  .aiers-page .aiers-workflow-results__top-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .aiers-page .aiers-workflow-results__card {
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
  }

  .aiers-page .aiers-workflow-results__copy {
    gap: 4px;
    min-height: 70px;
  }

  .aiers-page .aiers-workflow-results__card--chat .aiers-workflow-results__copy {
    min-height: 88px;
  }

  .aiers-page .aiers-workflow-results__badge {
    height: 16px;
    margin-bottom: 6px;
    padding: 2px 6px;
    border-width: 0.546px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: -0.11px;
  }

  .aiers-page .aiers-workflow-results__copy h3 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.14px;
  }

  .aiers-page .aiers-workflow-results__copy p {
    font-size: 12px;
    line-height: 1.42;
    letter-spacing: -0.12px;
  }

  .aiers-page .aiers-workflow-results__image {
    height: 152px;
  }

  .aiers-page .aiers-workflow-results__image--chat .aiers-workflow-results__chat-example {
    left: 36px;
    width: 240px;
    height: 264px;
  }

  .aiers-page .aiers-workflow-results__image--mood img {
    top: -8px;
    width: 421px;
    height: 202px;
  }

  .aiers-page .aiers-workflow-results__triptych {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    height: 102px;
  }

  .aiers-page .aiers-workflow-results__duo {
    gap: 9px;
    height: 152px;
  }

  .aiers-page .aiers-workflow-results__emphasis {
    min-height: 150px;
    padding: 24px 27px;
    border-width: 1px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.46;
    letter-spacing: -0.16px;
  }

  .aiers-page .aiers-workflow-results__emphasis-mobile-break {
    display: block;
  }

  .aiers-page .aiers-system-bridge {
    height: 399px;
  }

  .aiers-page .aiers-system-bridge__motif img {
    width: 286.53px;
    height: 296.17px;
  }

  .aiers-page .aiers-system-bridge__motif--right {
    top: 141px;
    left: 119px;
    width: 412.03px;
    height: 412.03px;
    transform: rotate(135deg);
  }

  .aiers-page .aiers-system-bridge__motif--left {
    top: -134px;
    right: auto;
    left: -148px;
    width: 396.23px;
    height: 399.76px;
    transform: rotate(-30deg);
  }

  .aiers-page .aiers-system-bridge__copy {
    gap: 20px;
    width: 343px;
  }

  .aiers-page .aiers-system-bridge__headline {
    gap: 12px;
    width: 100%;
  }

  .aiers-page .aiers-system-bridge__eyebrow {
    font-size: 16px;
    line-height: 1.6;
  }

  .aiers-page .aiers-system-bridge h2 {
    font-size: 24px;
    line-height: 1.5;
  }

  .aiers-page .aiers-system-bridge__desc {
    width: 298px;
    font-size: 18px;
    line-height: 1.5;
  }

  .aiers-page .aiers-system-bridge__desktop-title {
    display: none;
  }

  .aiers-page .aiers-system-bridge__mobile-title {
    display: inline;
  }

  .aiers-page .aiers-beginner {
    height: 1388px;
    min-height: 1388px;
    padding: 60px 16px;
  }

  .aiers-page .aiers-beginner__inner {
    gap: 40px;
    width: 343px;
  }

  .aiers-page .aiers-beginner__title {
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 114px;
    text-align: left;
  }

  .aiers-page .aiers-beginner__title h2 {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-beginner__title p {
    width: 343px;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-beginner__mobile-break {
    display: block;
  }

  .aiers-page .aiers-beginner__desktop-copy {
    display: none;
  }

  .aiers-page .aiers-beginner__mobile-copy {
    display: inline;
  }

  .aiers-page .aiers-beginner__content {
    gap: 10px;
    height: 1114px;
  }

  .aiers-page .aiers-beginner__featured {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 610px;
  }

  .aiers-page .aiers-beginner__feature-card {
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 14px;
    width: 343px;
    height: 300px;
    min-height: auto;
    padding: 20px;
    border-width: 1px;
    border-radius: 12px;
  }

  .aiers-page .aiers-beginner__feature-card--assistant {
    min-height: 300px;
  }

  .aiers-page .aiers-beginner__feature-copy {
    gap: 8px;
    width: 100%;
  }

  .aiers-page .aiers-beginner__label {
    font-size: 13px;
    line-height: 1.6;
  }

  .aiers-page .aiers-beginner__feature-card h3 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.18px;
  }

  .aiers-page .aiers-beginner__desc {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.14px;
  }

  .aiers-page .aiers-beginner__project-art {
    position: absolute;
    left: 240.84px;
    top: 165px;
    margin: 0;
    width: 113.16px;
    height: 115px;
  }

  .aiers-page .aiers-beginner__shadow {
    left: 11.96px;
    top: 102.92px;
    width: 101.2px;
    height: 11.96px;
  }

  .aiers-page .aiers-beginner__file {
    left: 29.44px;
    top: 42.24px;
    width: 69px;
    height: 69.07px;
  }

  .aiers-page .aiers-beginner__film {
    left: 0;
    top: 3px;
    width: 46.67px;
    height: 46.67px;
  }

  .aiers-page .aiers-beginner__film img {
    width: 36.8px;
    height: 36.8px;
    margin: 4.94px;
  }

  .aiers-page .aiers-beginner__book {
    left: 78.2px;
    top: 14.6px;
    width: 33.48px;
    height: 33.48px;
  }

  .aiers-page .aiers-beginner__book img {
    width: 27.6px;
    height: 27.6px;
    margin: 2.94px;
  }

  .aiers-page .aiers-beginner__assistant-art {
    position: absolute;
    left: 240.84px;
    top: 165px;
    margin: 0;
    width: 123px;
    height: 115px;
  }

  .aiers-page .aiers-beginner__tiles {
    grid-template-columns: repeat(2, 167px);
    gap: 10px 9px;
    height: auto;
  }

  .aiers-page .aiers-beginner__tile {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 167px;
    height: auto;
    min-height: 180px;
    padding: 20px 16px;
    overflow: visible;
    border: 1.5px solid #ffc8b7;
    border-radius: 8px;
  }

  .aiers-page .aiers-beginner__tile div {
    width: 135px;
  }

  .aiers-page .aiers-beginner__tile h3 {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.32px;
  }

  .aiers-page .aiers-beginner__tile p {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-process {
    height: 2583px;
    padding: 60px 0 60px 16px;
    overflow: hidden;
  }

  .aiers-page .aiers-process__inner {
    gap: 40px;
    width: 359px;
    margin: 0;
  }

  .aiers-page .aiers-process__intro {
    gap: 40px;
  }

  .aiers-page .aiers-process h2 {
    width: 343px;
    height: auto;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-process__cards {
    display: flex;
    gap: 10px;
    width: 100vw;
    margin-left: -16px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 16px;
    padding-right: 0;
    scroll-padding-left: 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .aiers-page .aiers-process__cards::-webkit-scrollbar {
    display: none;
  }

  .aiers-page .aiers-process__course-card {
    flex: 0 0 320px;
    border-radius: 6px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .aiers-page .aiers-process__thumb {
    height: 179.81px;
    border-radius: 6px 6px 0 0;
  }

  .aiers-page .aiers-process__thumb--split {
    grid-template-columns: 160px 160px;
  }

  .aiers-page .aiers-process__thumb--step4 img {
    height: 177.97%;
    object-position: center 37%;
  }

  .aiers-page .aiers-process__thumb .aiers-img-wrap {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .aiers-page .aiers-process__card-copy {
    min-height: 229px;
    padding: 18px 20px;
    border-width: 0.508px;
    border-radius: 0 0 6px 6px;
  }

  .aiers-page .aiers-process__tag {
    padding: 2.03px 6.1px;
    border-width: 0.508px;
    border-radius: 2px;
    font-size: 10px;
  }

  .aiers-page .aiers-process__card-copy h3 {
    margin-top: 12px;
    font-size: 16px;
    line-height: 15.238px;
  }

  .aiers-page .aiers-process__card-copy ul {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
  }

  .aiers-page .aiers-process__callout {
    width: 343px;
    padding: 24px 27px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.46;
  }

  .aiers-page .aiers-process__compare-list {
    gap: 32px;
    width: 343px;
  }

  .aiers-page .aiers-process__compare {
    gap: 20px;
    width: 343px;
  }

  .aiers-page .aiers-process__compare-head {
    gap: 8px;
  }

  .aiers-page .aiers-process__compare-head .aiers-process__step {
    padding: 4px 12px;
    font-size: 16px;
  }

  .aiers-page .aiers-process__compare-head h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .aiers-page .aiers-process__compare-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-process__before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 343px;
  }

  .aiers-page .aiers-process__before,
  .aiers-page .aiers-process__after {
    width: 172px;
    height: 286px;
    border-radius: 0;
  }

  .aiers-page .aiers-process__before {
    border-radius: 8px 0 0 8px;
    background: #8c8c8c;
  }

  .aiers-page .aiers-process__after {
    border-radius: 0 8px 8px 0;
    background: #ffe1e1;
  }

  .aiers-page .aiers-process__ba-label {
    flex-basis: 93px;
    height: 93px;
    padding: 16px 26px;
  }

  .aiers-page .aiers-process__ba-visual {
    flex: 0 0 193px;
    height: 193px;
  }

  .aiers-page .aiers-process__ba-visual--step1-before .aiers-process__ba-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .aiers-page .aiers-process__ba-visual--step1-after .aiers-process__ba-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .aiers-page .aiers-process__ba-visual--step2-before .aiers-process__ba-image,
  .aiers-page .aiers-process__ba-visual--step2-after .aiers-process__ba-image,
  .aiers-page .aiers-process__ba-visual--step3-after .aiers-process__ba-image,
  .aiers-page .aiers-process__ba-visual--step4-after .aiers-process__ba-image--front {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aiers-page .aiers-process__ba-split {
    grid-template-columns: 1fr;
    grid-template-rows: 96.5px 96.5px;
  }

  .aiers-page .aiers-process__ba-split--step2-before,
  .aiers-page .aiers-process__ba-split--step2-after {
    grid-template-columns: 1fr;
    grid-template-rows: 96.5px 96.5px;
  }

  .aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--front,
  .aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-half--front,
  .aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--side,
  .aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-half--side {
    height: 96.5px;
    margin-top: 0;
  }

  .aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-half--front > img,
  .aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-half--front > img {
    inset: 0;
    width: 172px;
    height: 172px;
    object-fit: cover;
  }

  .aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-step2-bg {
    top: -13px;
    left: 0;
    width: 172px;
    height: 172px;
  }

  .aiers-page .aiers-process__ba-split--step2-before .aiers-process__ba-step2-character {
    top: -49px;
    left: -37px;
    width: 230px;
    height: 230px;
  }

  .aiers-page .aiers-process__ba-split--step2-after .aiers-process__ba-step2-character {
    top: -42px;
    left: -19px;
    width: 194px;
    height: 194px;
  }

  .aiers-page .aiers-process__ba-status {
    top: 6px;
    width: 30px;
    height: 30px;
  }

  .aiers-page .aiers-process__ba-visual--step3-before .aiers-process__ba-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aiers-page .aiers-process__ba-visual--step4-before .aiers-process__ba-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aiers-page .aiers-process__ba-visual--step4-after .aiers-process__ba-image--back {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }

  .aiers-page .aiers-process__ba-label strong {
    gap: 4px;
    font-size: 14px;
  }

  .aiers-page .aiers-process__ba-label .aiers-img-wrap {
    width: 15px;
    height: 15px;
  }

  .aiers-page .aiers-process__ba-label img {
    width: 15px;
    height: 15px;
  }

  .aiers-page .aiers-process__ba-label span {
    font-size: 12px;
    line-height: 1.5;
  }

  .aiers-page .aiers-questions {
    height: 840px;
    padding: 60px 16px;
  }

  .aiers-page .aiers-questions__inner {
    gap: 40px;
    width: 343px;
    height: 776px;
  }

  .aiers-page .aiers-questions h2 {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-questions__chat {
    width: 343px;
    height: 676px;
    overflow: hidden;
  }

  .aiers-page .aiers-questions__user {
    gap: 0;
  }

  .aiers-page .aiers-questions__user--one {
    top: 1px;
    left: 30px;
  }

  .aiers-page .aiers-questions__user--two {
    top: 339px;
    left: 67px;
  }

  .aiers-page .aiers-questions__bubble {
    height: 43px;
    font-size: 14px;
  }

  .aiers-page .aiers-questions__bubble--question {
    margin-top: 28px;
    padding: 0 18px;
  }

  .aiers-page .aiers-questions__user--one .aiers-questions__bubble--question {
    width: 263px;
  }

  .aiers-page .aiers-questions__user--two .aiers-questions__bubble--question {
    width: 226px;
  }

  .aiers-page .aiers-questions__avatar {
    width: 50px;
    height: 50px;
  }

  .aiers-page .aiers-questions__answer--one {
    top: 82px;
    left: 0;
    width: 289px;
  }

  .aiers-page .aiers-questions__answer--two {
    top: 420px;
    left: 0;
    width: 343px;
  }

  .aiers-page .aiers-questions__bubble--answer {
    left: 60px;
    top: 25px;
    min-height: 52px;
    height: auto;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-questions__answer--one .aiers-questions__bubble--answer {
    width: 264px;
    min-height: 91px;
  }

  .aiers-page .aiers-questions__answer--two .aiers-questions__bubble--answer {
    width: 242px;
    min-height: 91px;
  }

  .aiers-page .aiers-questions__image {
    top: 124px;
    left: 60px;
    width: 229px;
    height: 128px;
    border-radius: 12px;
  }

  .aiers-page .aiers-questions__answer--two .aiers-questions__image {
    top: 124px;
    left: 60px;
  }

  .aiers-page .aiers-questions__image--setting {
    border-radius: 4px;
  }

  .aiers-page .aiers-questions__image--result,
  .aiers-page .aiers-questions__image--result .aiers-questions__rotator {
    background: #f1f3ee;
  }

  .aiers-page .aiers-questions__image--result img,
  .aiers-page .aiers-questions__image--result video {
    object-fit: cover;
    object-position: center;
  }

  .aiers-page .aiers-questions__image--setting img {
    object-position: center;
  }

  .aiers-page .aiers-questions__image figcaption {
    top: 7.69px;
    left: 7.69px;
    padding: 4px 6px;
    border-width: 0.427px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-questions__image--result figcaption {
    display: flex;
  }

  .aiers-page .aiers-questions__mobile-break {
    display: block;
  }

  .aiers-page .aiers-materials {
    height: 1534px;
    padding: 60px 16px;
    background: #191919;
  }

  .aiers-page .aiers-materials::before {
    width: 100%;
    height: 1534px;
    background: linear-gradient(180deg, #0e0e0e 74.273%, #ff6b4a 231.61%);
  }

  .aiers-page .aiers-materials__inner {
    gap: 40px;
    width: min(343px, 100%);
  }

  .aiers-page .aiers-materials h2 {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-materials__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .aiers-page .aiers-materials__card {
    align-items: flex-start;
    width: 100%;
    height: 237px;
    padding: 24px;
    border-radius: 12px;
  }

  .aiers-page .aiers-materials__tag {
    height: 28px;
    padding: 4px 12px;
    font-size: 13.385px;
    line-height: 18px;
  }

  .aiers-page .aiers-materials__icon {
    order: 3;
    align-self: flex-end;
    width: 90px;
    height: 90px;
    margin-top: 7px;
  }

  .aiers-page .aiers-materials__icon img {
    width: 90px;
    height: 90px;
  }

  .aiers-page .aiers-materials__copy {
    order: 2;
    align-items: flex-start;
    gap: 4px;
    margin-top: 11px;
    text-align: left;
  }

  .aiers-page .aiers-materials__copy h3 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.18px;
  }

  .aiers-page .aiers-materials__copy p {
    font-size: 14px;
    line-height: 21px;
  }

  .aiers-page .aiers-materials__card--prompt-maker {
    grid-column: auto;
    width: 100%;
    height: 543px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: visible;
  }

  .aiers-page .aiers-materials__card--prompt-maker .aiers-materials__tag {
    order: 0;
    height: 28px;
    padding: 4px 12px;
    border-width: 0.837px;
    font-size: 13.385px;
    line-height: 18px;
  }

  .aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy {
    order: 1;
    align-items: flex-start;
    width: 295px;
    margin-top: 12px;
    text-align: left;
  }

  .aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy h3 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-materials__card--prompt-maker .aiers-materials__copy p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.28px;
  }

  .aiers-page .aiers-materials__prompt-previews {
    order: 2;
    flex-direction: column;
    gap: 20px;
    width: 295px;
    height: auto;
    margin-top: 20px;
    padding-top: 0;
  }

  .aiers-page .aiers-materials__prompt-preview-image,
  .aiers-page .aiers-materials__prompt-preview-crop {
    width: 295px;
    height: 171px;
  }

  .aiers-page .aiers-materials__only-badge {
    display: block;
    top: -40px;
    right: -14.738px;
    width: 100px;
    height: 100px;
  }

  .aiers-page .aiers-s10-bridge {
    height: 360px;
  }

  .aiers-page .aiers-s10-bridge__orb {
    width: 412.032px;
    height: 412.032px;
  }

  .aiers-page .aiers-s10-bridge__orb img {
    width: 286.528px;
    height: 296.172px;
  }

  .aiers-page .aiers-s10-bridge__orb--right {
    left: 119px;
    top: 141px;
    transform: rotate(135deg);
  }

  .aiers-page .aiers-s10-bridge__orb--left {
    left: -148px;
    top: -134px;
    width: 396.227px;
    height: 399.757px;
    transform: rotate(-30deg);
  }

  .aiers-page .aiers-s10-bridge__copy {
    left: calc(50% + 0.5px);
    gap: 20px;
    width: 343px;
  }

  .aiers-page .aiers-s10-bridge__headline {
    gap: 12px;
  }

  .aiers-page .aiers-s10-bridge__eyebrow {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.16px;
  }

  .aiers-page .aiers-s10-bridge h2 {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-s10-bridge__desktop-line {
    color: #fff;
  }

  .aiers-page .aiers-s10-bridge__mobile-break {
    display: block;
  }

  .aiers-page .aiers-s10-bridge__description {
    width: 298px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.18px;
  }

  .aiers-page .aiers-work-method {
    height: 878px;
    padding: 80px 0 60px;
  }

  .aiers-page .aiers-work-method__curve {
    top: -1px;
    left: 50%;
    width: 375px;
    height: 36px;
    transform: translateX(-50%);
  }

  .aiers-page .aiers-work-method__inner {
    gap: 40px;
    width: 100%;
    height: 738px;
    padding: 0;
  }

  .aiers-page .aiers-work-method h2 {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-work-method__mobile-break,
  .aiers-page .aiers-work-method__mobile-only {
    display: block;
  }

  .aiers-page .aiers-work-method__content {
    gap: 20px;
    width: 100%;
  }

  .aiers-page .aiers-work-method__cards {
    gap: 10px;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-left: 12px;
    scroll-padding-left: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .aiers-page .aiers-work-method__cards::-webkit-scrollbar {
    display: none;
  }

  .aiers-page .aiers-work-method__card {
    flex: 0 0 319px;
    width: 319px;
    height: 478px;
    padding: 20px;
    border-radius: 12px;
    scroll-snap-align: start;
  }

  .aiers-page .aiers-work-method__card:last-child {
    margin-right: 16px;
  }

  .aiers-page .aiers-work-method__person {
    gap: 10px;
    width: 84px;
  }

  .aiers-page .aiers-work-method__avatar {
    width: 84px;
    height: 84px;
    border-radius: 8px;
  }

  .aiers-page .aiers-work-method__person h3 {
    width: 84px;
    font-size: 18px;
    line-height: 1.5;
  }

  .aiers-page .aiers-work-method__steps {
    gap: 12px;
    width: 280px;
  }

  .aiers-page .aiers-work-method__state {
    width: 280px;
    min-height: 114px;
    padding: 20px 32px;
  }

  .aiers-page .aiers-work-method__state-inner {
    gap: 6px;
    width: 216px;
  }

  .aiers-page .aiers-work-method__state-title {
    gap: 1.673px;
  }

  .aiers-page .aiers-work-method__state-title .aiers-img-wrap,
  .aiers-page .aiers-work-method__state-title img {
    width: 25px;
    height: 25px;
  }

  .aiers-page .aiers-work-method__state-title strong {
    font-size: 18px;
  }

  .aiers-page .aiers-work-method__state p {
    width: 216px;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-work-method__state--new p {
    color: #222;
    font-size: 14px;
  }

  .aiers-page .aiers-work-method__arrow {
    width: 67px;
    height: 44px;
  }

  .aiers-page .aiers-work-method__callout {
    width: 343px;
    margin-right: auto;
    margin-left: auto;
    padding: 24px 27px;
    border-width: 1px;
    border-radius: 6px;
  }

  .aiers-page .aiers-work-method__callout p {
    width: 289px;
    font-size: 16px;
    line-height: 1.46;
    white-space: normal;
  }

  .aiers-page .aiers-instructor {
    height: auto;
    padding: 80px 16px;
  }

  .aiers-page .aiers-instructor__inner {
    gap: 32px;
    width: 100%;
    max-width: 343px;
  }

  .aiers-page .aiers-instructor__desktop-title,
  .aiers-page .aiers-instructor__desktop-chip {
    display: none;
  }

  .aiers-page .aiers-instructor__mobile-title {
    display: inline;
  }

  .aiers-page .aiers-instructor__main-title {
    width: 100%;
    color: #141413;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-instructor__body {
    gap: 60px;
    width: 100%;
  }

  .aiers-page .aiers-instructor__profile {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px 12px;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 18px 14px;
    overflow: hidden;
    border-color: #ffc8b7;
    border-radius: 8px;
    background: #fafafa;
  }

  .aiers-page .aiers-instructor__profile-media {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    width: 80px;
    height: 80px;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #ff6b4a 0%, #ffaf9d 100%);
  }

  .aiers-page .aiers-instructor__portrait {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 100%;
  }

  .aiers-page .aiers-instructor__portrait--blur {
    display: none;
  }

  .aiers-page .aiers-instructor__portrait img {
    object-fit: contain;
    object-position: center bottom;
  }

  .aiers-page .aiers-instructor__profile-content {
    position: static;
    display: contents;
    width: auto;
  }

  .aiers-page .aiers-instructor__profile-top {
    display: contents;
    width: auto;
    padding-left: 0;
  }

  .aiers-page .aiers-instructor__profile-heading {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 0;
    padding-left: 0;
    gap: 2px;
  }

  .aiers-page .aiers-instructor__name-row h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .aiers-page .aiers-instructor__name-row span {
    display: none;
  }

  .aiers-page .aiers-instructor__profile-heading p {
    color: #444;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.12px;
  }

  .aiers-page .aiers-instructor__links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
  }

  .aiers-page .aiers-instructor__divider {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
  }

  .aiers-page .aiers-instructor__history {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    font-size: 14px;
    line-height: 1.45;
    white-space: normal;
  }

  .aiers-page .aiers-instructor__history-mobile-break {
    display: block;
  }

  .aiers-page .aiers-instructor__links span,
  .aiers-page .aiers-instructor__links a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    height: auto;
    min-height: 33px;
    background: rgba(255, 107, 74, 0.1);
    font-size: 12px;
    white-space: normal;
  }

  .aiers-page .aiers-instructor__quote {
    grid-column: 1 / -1;
    grid-row: 5;
    position: static;
    width: 100%;
    padding: 12px 14px;
    border-radius: 4px;
  }

  .aiers-page .aiers-instructor__quote p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.28px;
    text-align: center;
  }

  .aiers-page .aiers-instructor__proof {
    gap: 32px;
    width: 100%;
  }

  .aiers-page .aiers-instructor__proof-head {
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
  }

  .aiers-page .aiers-instructor__proof-head h2 {
    color: #141413;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-instructor__proof-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-instructor__score-row {
    gap: 12px;
    width: 100%;
  }

  .aiers-page .aiers-instructor__score-card {
    min-height: 140px;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .aiers-page .aiers-instructor__score-card span {
    font-size: 14px;
  }

  .aiers-page .aiers-instructor__score-card strong {
    font-size: 32px;
  }

  .aiers-page .aiers-instructor__score-card em {
    font-size: 12px;
  }

  .aiers-page .aiers-instructor__score-stars {
    flex-direction: column;
    align-items: center;
  }

  .aiers-page .aiers-instructor__score-stars .aiers-img-wrap,
  .aiers-page .aiers-instructor__score-stars img {
    width: 121.556px;
    height: 23.376px;
  }

  .aiers-page .aiers-instructor__reviews {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: -20px;
  }

  .aiers-page .aiers-instructor__review {
    width: 100%;
    padding: 12px 16px;
    gap: 6px;
    border-radius: 8px;
  }

  .aiers-page .aiers-instructor__review-stars,
  .aiers-page .aiers-instructor__review-stars img {
    width: 121.556px;
    height: 23.376px;
  }

  .aiers-page .aiers-instructor__review p {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-instructor__review > span:not(.aiers-instructor__review-stars) {
    padding-top: 6px;
    font-size: 12px;
    color: #9a9a9a;
  }

  .aiers-page .aiers-instructor__guarantee {
    width: 100%;
    min-height: 152px;
    margin-top: 0;
    padding: 16px;
    border-width: 1px;
    border-radius: 8px;
  }

  .aiers-page .aiers-instructor__guarantee .aiers-img-wrap,
  .aiers-page .aiers-instructor__guarantee img {
    width: 24px;
    height: 24px;
  }

  .aiers-page .aiers-instructor__guarantee h3 {
    margin: 4px 0 8px;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-instructor__guarantee p {
    font-size: 16px;
  }

  .aiers-page .aiers-interview {
    height: auto;
    padding: 60px 16px;
  }

  .aiers-page .aiers-interview__inner {
    gap: 40px;
    width: 343px;
  }

  .aiers-page .aiers-interview__title {
    width: 343px;
    color: #141413;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-interview__list {
    gap: 10px;
    width: 343px;
  }

  .aiers-page .aiers-interview__item,
  .aiers-page .aiers-interview__item--one,
  .aiers-page .aiers-interview__item--two,
  .aiers-page .aiers-interview__item--three {
    width: 343px;
    height: auto;
    padding: 24px 20px;
    border: 1px solid #ff6b4a;
    border-radius: 8px;
    background: #fff;
  }

  .aiers-page .aiers-interview__bubble {
    display: none;
  }

  .aiers-page .aiers-interview__content,
  .aiers-page .aiers-interview__item--one .aiers-interview__content,
  .aiers-page .aiers-interview__item--two .aiers-interview__content,
  .aiers-page .aiers-interview__item--three .aiers-interview__content {
    position: relative;
    left: auto;
    top: auto;
    width: 303px;
    gap: 12px;
  }

  .aiers-page .aiers-interview__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .aiers-page .aiers-interview__avatar {
    width: 50px;
    height: 50px;
  }

  .aiers-page .aiers-interview__question {
    width: 303px;
  }

  .aiers-page .aiers-interview__question span {
    font-size: 14px;
  }

  .aiers-page .aiers-interview__question h3 {
    font-size: 18px;
  }

  .aiers-page .aiers-interview__answer {
    width: 303px;
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
  }

  .aiers-page .aiers-programs {
    height: auto;
    padding: 60px 16px;
  }

  .aiers-page .aiers-programs__inner {
    gap: 20px;
    width: 343px;
  }

  .aiers-page .aiers-programs__group {
    gap: 32px;
    width: 343px;
  }

  .aiers-page .aiers-programs__title {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-programs__cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 343px;
  }

  .aiers-page .aiers-programs__card {
    flex: 0 0 auto;
    width: 343px;
    height: auto;
    min-height: 0;
    padding: 24px;
    border-width: 1px;
  }

  .aiers-page .aiers-programs__card-inner {
    gap: 10px;
    width: 294px;
    height: auto;
  }

  .aiers-page .aiers-programs__card-main {
    gap: 10px;
    width: 294px;
    height: auto;
  }

  .aiers-page .aiers-programs__head {
    gap: 10px;
    width: 294px;
  }

  .aiers-page .aiers-programs__icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .aiers-page .aiers-programs__icon--box {
    border-radius: 4px;
  }

  .aiers-page .aiers-programs__icon--box .aiers-img-wrap,
  .aiers-page .aiers-programs__icon--box img {
    width: 33.333px;
    height: 33.333px;
  }

  .aiers-page .aiers-programs__ps-surface,
  .aiers-page .aiers-programs__ps-surface img {
    width: 50px;
    height: 50px;
  }

  .aiers-page .aiers-programs__ps-logo {
    left: 11.25px;
    top: 12.71px;
    width: 30.083px;
    height: 23.077px;
  }

  .aiers-page .aiers-programs__ps-logo img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .aiers-page .aiers-programs__heading {
    width: 223px;
  }

  .aiers-page .aiers-programs__badge {
    padding: 6px 10px;
    border: 0;
    font-size: 11px;
    letter-spacing: -0.147px;
  }

  .aiers-page .aiers-programs__heading h3 {
    width: 223px;
    font-size: 18px;
  }

  .aiers-page .aiers-programs__description,
  .aiers-page .aiers-programs__notes,
  .aiers-page .aiers-programs__footnote {
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-programs__description {
    width: 294px;
  }

  .aiers-page .aiers-programs__notes {
    width: 294px;
  }

  .aiers-page .aiers-programs__footnote {
    width: 343px;
  }

  .aiers-page .aiers-programs__desktop-copy {
    display: none;
  }

  .aiers-page .aiers-programs__mobile-copy {
    display: block;
  }

  .aiers-page .aiers-programs__mobile-break {
    display: inline;
  }

  .aiers-page .aiers-programs__desktop-dot {
    display: none;
  }

  .aiers-page .aiers-schedule {
    height: auto;
    padding: 80px 16px;
  }

  .aiers-page .aiers-schedule__inner {
    gap: 32px;
    width: 343px;
  }

  .aiers-page .aiers-schedule__title {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-schedule__parts {
    flex-direction: column;
    gap: 24px;
    width: 343px;
  }

  .aiers-page .aiers-schedule__part {
    width: 343px;
    border-radius: 8px;
  }

  .aiers-page .aiers-schedule__part--one {
    height: 472px;
  }

  .aiers-page .aiers-schedule__part--two {
    height: 442px;
  }

  .aiers-page .aiers-schedule__part-head {
    gap: 8px;
    width: 343px;
    height: 54px;
    padding: 16px;
    border-radius: 8px 8px 0 0;
  }

  .aiers-page .aiers-schedule__part-head > span {
    height: 22px;
    padding: 2px 8px;
    border: 1px solid #ff6b4a;
    font-size: 12px;
    font-weight: 600;
  }

  .aiers-page .aiers-schedule__part-head strong {
    font-size: 14px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-schedule__desktop-time {
    display: none;
  }

  .aiers-page .aiers-schedule__mobile-time {
    display: inline;
  }

  .aiers-page .aiers-schedule__body,
  .aiers-page .aiers-schedule__part--two .aiers-schedule__body {
    gap: 8px;
    width: 343px;
    padding: 16px 15px;
    border-color: #ff6b4a;
    border-radius: 0 0 8px 8px;
  }

  .aiers-page .aiers-schedule__body {
    height: 418px;
  }

  .aiers-page .aiers-schedule__part--two .aiers-schedule__body {
    height: 388px;
  }

  .aiers-page .aiers-schedule__slot {
    gap: 14px;
    width: 311px;
  }

  .aiers-page .aiers-schedule__slot:first-child {
    gap: 14px;
  }

  .aiers-page .aiers-schedule__part--two .aiers-schedule__slot:first-child {
    gap: 8px;
  }

  .aiers-page .aiers-schedule__main {
    gap: 24px;
    width: 311px;
  }

  .aiers-page .aiers-schedule__main time {
    font-size: 14px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-schedule__copy {
    flex: 1 1 auto;
    gap: 4px;
    width: auto;
    min-width: 0;
  }

  .aiers-page .aiers-schedule__heading {
    gap: 0;
  }

  .aiers-page .aiers-schedule__heading span {
    font-size: 12px;
    line-height: 1.5;
  }

  .aiers-page .aiers-schedule__heading h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 19.5px;
    white-space: normal;
  }

  .aiers-page .aiers-schedule__copy p {
    width: 244px;
    font-size: 12px;
    line-height: 1.4;
    word-break: keep-all;
  }

  .aiers-page .aiers-schedule__divider {
    width: 311px;
  }

  .aiers-page .aiers-schedule__result {
    gap: 12px;
    width: 311px;
    height: 37px;
    min-height: 0;
    padding: 6px 12px;
  }

  .aiers-page .aiers-schedule__result span {
    height: 24px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 16px;
  }

  .aiers-page .aiers-schedule__result strong {
    width: 227px;
    font-size: 13px;
    line-height: 1.5;
    white-space: normal;
  }

  .aiers-page .aiers-journey {
    height: 1360px;
    padding: 80px 16px;
    background:
      radial-gradient(circle at 42% 52%, rgba(255, 255, 255, 0.16), transparent 0.09%, transparent 30%),
      linear-gradient(180deg, #ff7f61 0%, #ff6b4a 52%, #ff6b4a 100%);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .aiers-page .aiers-journey__inner {
    gap: 32px;
    width: 343px;
  }

  .aiers-page .aiers-journey__title {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
    white-space: nowrap;
  }

  .aiers-page .aiers-journey__cards {
    flex-direction: column;
    gap: 40px;
    width: 343px;
  }

  .aiers-page .aiers-journey__card {
    flex: 0 0 auto;
    width: 343px;
    height: auto;
    gap: 20px;
    padding: 24px 20px;
    border-color: #e6eff1;
    border-radius: 8px;
  }

  .aiers-page .aiers-journey__card--active {
    border-width: 2px;
  }

  .aiers-page .aiers-journey__head {
    gap: 13.72px;
  }

  .aiers-page .aiers-journey__badge {
    padding: 3.43px 10.29px;
    border-width: 0.858px;
    font-size: 14px;
  }

  .aiers-page .aiers-journey__copy {
    gap: 6.86px;
  }

  .aiers-page .aiers-journey__copy h3 {
    font-size: 28px;
    line-height: 1.4;
  }

  .aiers-page .aiers-journey__copy p {
    font-size: 16px;
    line-height: 1.4;
  }

  .aiers-page .aiers-journey__list li {
    height: 48px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .aiers-page .aiers-journey__arrow {
    width: 97px;
    height: 21px;
    left: 50%;
    transform: translateX(-50%);
  }

  .aiers-page .aiers-journey__arrow--one {
    top: 351.5px;
    left: 50%;
    content: url("./figma/journey/arrow-mobile.svg");
  }

  .aiers-page .aiers-journey__arrow--two {
    top: 735.5px;
    left: 50%;
    content: url("./figma/journey/arrow-mobile.svg");
  }

  .aiers-page .aiers-promise-one {
    height: 1131px;
    padding: 80px 16px;
  }

  .aiers-page .aiers-promise-one__inner {
    gap: 40px;
    width: 343px;
  }

  .aiers-page .aiers-promise-one__title {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
    white-space: nowrap;
  }

  .aiers-page .aiers-promise-one__items {
    flex-direction: column;
    gap: 24px;
    width: 343px;
  }

  .aiers-page .aiers-promise-one__item {
    flex: 0 0 auto;
    width: 343px;
    gap: 20.045px;
  }

  .aiers-page .aiers-promise-one__visual {
    width: 343px;
    height: 200.455px;
    border-radius: 8px;
  }

  .aiers-page .aiers-promise-one__item--community .aiers-promise-one__visual img {
    top: 20.37px;
    left: 17px;
    width: 307px;
    height: 213px;
  }

  .aiers-page .aiers-promise-one__copy {
    gap: 9.814px;
  }

  .aiers-page .aiers-promise-one__copy h3 {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.32px;
  }

  .aiers-page .aiers-promise-one__copy p {
    width: 342.443px;
    font-size: 14px;
    line-height: 1.45;
  }

  .aiers-page .aiers-promise-two {
    height: 1465px;
    padding: 60px 16px;
  }

  .aiers-page .aiers-promise-two__inner {
    align-items: flex-start;
    gap: 32px;
    width: 343px;
  }

  .aiers-page .aiers-promise-two__title {
    width: 343px;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-promise-two__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 343px;
  }

  .aiers-page .aiers-promise-two__card {
    width: 343px;
    height: 299px;
    gap: 12px;
    padding: 16px;
    border-color: #e6e6e6;
    border-radius: 8px;
  }

  .aiers-page .aiers-promise-two__card--tall {
    height: 320px;
  }

  .aiers-page .aiers-promise-two__content {
    gap: 12px;
    height: auto;
  }

  .aiers-page .aiers-promise-two__badge {
    height: 22px;
    min-width: 30px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
  }

  .aiers-page .aiers-promise-two__copy {
    gap: 6px;
  }

  .aiers-page .aiers-promise-two__copy h3 {
    width: 311px;
    font-size: 16px;
    line-height: 30px;
  }

  .aiers-page .aiers-promise-two__copy p {
    width: 311px;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-promise-two__desktop-copy {
    display: none;
  }

  .aiers-page .aiers-promise-two__mobile-copy {
    display: inline;
  }

  .aiers-page .aiers-promise-two__visual {
    width: 311px;
    height: 164px;
    min-height: 164px;
    border-radius: 4px;
  }

  .aiers-page .aiers-promise-two__visual--refund {
    overflow: hidden;
    background: #ffe4db;
  }

  .aiers-page .aiers-apply {
    height: 987px;
    padding: 60px 16px 80px;
  }

  .aiers-page .aiers-apply__inner {
    gap: 40px;
    width: 343px;
  }

  .aiers-page .aiers-apply__title {
    width: 343px;
    height: 120px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.24px;
  }

  .aiers-page .aiers-apply__mobile-break {
    display: none;
  }

  .aiers-page .aiers-apply__title strong {
    white-space: nowrap;
  }

  .aiers-page .aiers-apply__content {
    gap: 24px;
    width: 343px;
  }

  .aiers-page .aiers-apply__price {
    gap: 4px;
    width: 343px;
  }

  .aiers-page .aiers-apply__price-main {
    gap: 8px;
  }

  .aiers-page .aiers-apply__caption {
    height: 26px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
  }

  .aiers-page .aiers-apply__amount {
    gap: 7px;
    height: 24px;
  }

  .aiers-page .aiers-apply__amount strong {
    font-size: 22px;
    letter-spacing: -0.44px;
  }

  .aiers-page .aiers-apply__amount s {
    font-size: 12px;
    line-height: 1.5;
  }

  .aiers-page .aiers-apply__discount {
    font-size: 14px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-apply__details {
    gap: 12px;
    width: 343px;
  }

  .aiers-page .aiers-apply__summary-cards {
    gap: 12px;
    width: 343px;
    height: 94px;
  }

  .aiers-page .aiers-apply__summary-card {
    flex: 1 1 0;
    width: auto;
    height: 94px;
    min-width: 0;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .aiers-page .aiers-apply__summary-card .aiers-img-wrap {
    width: 20px;
    height: 20px;
  }

  .aiers-page .aiers-apply__summary-card span,
  .aiers-page .aiers-apply__summary-card strong {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.28px;
  }

  .aiers-page .aiers-apply__benefits {
    width: 343px;
    padding: 16px;
    border-color: #e6dfd8;
    border-radius: 8px;
    gap: 4px;
  }

  .aiers-page .aiers-apply__benefits li {
    align-items: flex-start;
    gap: 8px;
    min-height: 26px;
    padding-bottom: 4px;
    border-bottom-color: #e6dfd8;
  }

  .aiers-page .aiers-apply__benefits li:last-child {
    border-bottom: 0;
  }

  .aiers-page .aiers-apply__benefits img {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    content: url("./figma/apply/check-mobile.svg");
  }

  .aiers-page .aiers-apply__benefits span {
    flex: 1 1 auto;
    width: auto;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
  }

  .aiers-page .aiers-apply__cta-wrap {
    gap: 12px;
    width: 343px;
  }

  .aiers-page .aiers-apply__remaining {
    width: 343px;
    height: 45px;
    padding: 12px 16px;
    border-color: #ff6b4a;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-apply__buttons {
    flex-direction: column;
    gap: 12px;
    width: 343px;
  }

  .aiers-page .aiers-apply__button {
    width: 343px;
    height: 48px;
    padding: 10px 8px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.5;
  }

  .aiers-page .aiers-faq {
    min-height: 0;
    height: auto;
    padding: 88px 16px 104px;
  }

  .aiers-page .aiers-faq__inner {
    gap: 40px;
    width: min(343px, 100%);
  }

  .aiers-page .aiers-faq__title {
    width: 100%;
    height: 30px;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-faq__accordion {
    width: 100%;
    height: auto;
  }

  .aiers-page .aiers-faq__item {
    flex-basis: auto;
  }

  .aiers-page .aiers-faq__item--open {
    padding: 12px 16px;
  }

  .aiers-page .aiers-faq__question {
    align-items: flex-start;
    min-height: 21px;
    height: auto;
    font-size: 14px;
    line-height: 1.5;
  }

  .aiers-page .aiers-faq__item:not(.aiers-faq__item--open) .aiers-faq__question {
    align-items: center;
    min-height: 44px;
    height: auto;
    padding: 11px 16px 12px;
  }

  .aiers-page .aiers-faq__question-copy {
    flex: 1 1 auto;
    align-items: flex-start;
    gap: 10px;
    white-space: normal;
  }

  .aiers-page .aiers-faq__item--open .aiers-faq__question-copy {
    gap: 12px;
  }

  .aiers-page .aiers-faq__question-copy span:last-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .aiers-page .aiers-faq__chevron {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .aiers-page .aiers-faq__chevron--up {
    margin: 0;
  }

  .aiers-page .aiers-faq__answer {
    width: 100%;
    height: auto;
    margin-top: 12px;
    padding-right: 16px;
    padding-left: 30px;
  }

  .aiers-page .aiers-faq__answer p {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .aiers-page .aiers-recommend {
    height: 932px;
    padding: 60px 0;
  }

  .aiers-page .aiers-recommend__inner {
    gap: 40px;
    width: 375px;
  }

  .aiers-page .aiers-recommend__group {
    gap: 20px;
    width: 375px;
  }

  .aiers-page .aiers-recommend__title {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 375px;
    height: 65.184px;
    padding: 0 16px;
    font-size: 24px;
    line-height: 1.358;
  }

  .aiers-page .aiers-recommend__title span,
  .aiers-page .aiers-recommend__title strong {
    display: block;
    width: 343px;
  }

  .aiers-page .aiers-recommend__title strong {
    margin-left: 0;
  }

  .aiers-page .aiers-recommend__rail {
    gap: 10px;
    width: 359px;
    margin-left: 16px;
    overflow: visible;
  }

  .aiers-page .aiers-recommend__rail--active,
  .aiers-page .aiers-recommend__rail--notify {
    height: 300px;
  }

  .aiers-page .aiers-recommend__group,
  .aiers-page .aiers-recommend__rail {
    overflow: hidden;
  }

  .aiers-page .aiers-recommend__card {
    flex-basis: 227px;
    width: 227px;
    height: 300px;
    border-radius: 12px;
  }

  .aiers-page .aiers-recommend__thumb {
    width: 227px;
    height: 128px;
  }

  .aiers-page .aiers-recommend__body {
    top: 142px;
    left: 14px;
    gap: 6px;
    width: 199px;
    height: auto;
    padding: 0;
  }

  .aiers-page .aiers-recommend__body > .aiers-recommend__teacher,
  .aiers-page .aiers-recommend__body h3 {
    width: 199px;
  }

  .aiers-page .aiers-recommend__teacher {
    font-size: 11px;
    line-height: normal;
  }

  .aiers-page .aiers-recommend__body h3 {
    overflow: hidden;
    font-size: 14px;
    line-height: 18.314px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aiers-page .aiers-recommend__desc {
    width: 199px;
    margin-top: 0;
    font-size: 12px;
    line-height: 16.221px;
  }

  .aiers-page .aiers-recommend__price {
    top: 244px;
    right: 14px;
    width: 107px;
  }

  .aiers-page .aiers-recommend__price s {
    font-size: 11px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-recommend__price strong {
    font-size: 20px;
    line-height: 19.5px;
  }

  .aiers-page .aiers-recommend__badge {
    top: 12px;
    left: 12px;
    height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: -0.144px;
  }

  .aiers-page .aiers-recommend__badge img {
    width: 12px;
    height: 12px;
    content: url("./figma/recommend/bell-mobile.svg");
  }

  .aiers-page .aiers-recommend__button {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 6.105px;
    height: 38px;
    padding: 11.337px 13.953px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .aiers-page .aiers-recommend__button img {
    width: 12.209px;
    height: 12.209px;
    content: url("./figma/recommend/button-bell-mobile.svg");
  }

  .aiers-page .aiers-deadline {
    height: 567px;
  }

  .aiers-page .aiers-deadline__glow {
    top: 326px;
    left: 50%;
    width: 374px;
    height: 290px;
    opacity: 0.7;
    background: radial-gradient(ellipse 15.597px 29px at 50% 0, #1a1a1a 0%, rgba(41, 41, 41, 0) 100%);
    transform: translateX(-50%) scaleX(7.6);
  }

  .aiers-page .aiers-deadline__inner {
    top: 70px;
    left: 50%;
    gap: 40px;
    width: 320px;
  }

  .aiers-page .aiers-deadline__content {
    gap: 40px;
    width: 240px;
  }

  .aiers-page .aiers-deadline__heading {
    width: 219px;
  }

  .aiers-page .aiers-deadline__eyebrow {
    width: 219px;
    font-size: 20px;
    letter-spacing: -0.8px;
  }

  .aiers-page .aiers-deadline__heading h2 {
    width: 219px;
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .aiers-page .aiers-deadline__timer--desktop {
    display: none;
  }

  .aiers-page .aiers-deadline__timer--mobile {
    display: flex;
    align-items: flex-start;
    gap: 17.511px;
    width: 240px;
  }

  .aiers-page .aiers-deadline__mobile-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16.417px;
    width: 240px;
  }

  .aiers-page .aiers-deadline__digits {
    gap: 12.039px;
    width: 240px;
    height: 70.309px;
  }

  .aiers-page .aiers-deadline__unit {
    gap: 3.233px;
    flex-basis: 104.93px;
    height: 70.309px;
  }

  .aiers-page .aiers-deadline__unit span {
    width: 50.849px;
    height: 70.309px;
    border-radius: 8.082px;
    font-size: 45px;
  }

  .aiers-page .aiers-deadline__colon {
    flex-basis: 6.061px;
    width: 6.061px;
    height: 21.145px;
  }

  .aiers-page .aiers-deadline__labels {
    justify-content: space-between;
    gap: 0;
    width: 189.916px;
    height: 17px;
    font-size: 13.778px;
  }

  .aiers-page .aiers-deadline__labels span {
    flex-basis: 53.338px;
  }

  .aiers-page .aiers-deadline__button {
    width: 320px;
    height: 52px;
    padding: 14px 20px;
  }
}

@media (max-width: 767px) {
  .aiers-page {
    --aiers-mobile-gutter: 16px;
    --aiers-mobile-max: 520px;
    --aiers-mobile-content: min(var(--aiers-mobile-max), calc(100vw - (var(--aiers-mobile-gutter) * 2)));
  }

    .aiers-page .aiers-price__inner,
    .aiers-page .aiers-cheapest > .aiers-wrap,
    .aiers-page .aiers-results__title,
    .aiers-page .aiers-results__teasers,
    .aiers-page .aiers-ip-character__inner,
    .aiers-page .aiers-ai-image__inner,
    .aiers-page .aiers-workflow-results__inner,
    .aiers-page .aiers-beginner__inner,
  .aiers-page .aiers-process__inner,
  .aiers-page .aiers-questions__inner,
  .aiers-page .aiers-materials__inner,
  .aiers-page .aiers-work-method__inner,
  .aiers-page .aiers-instructor__inner,
  .aiers-page .aiers-interview__inner,
  .aiers-page .aiers-programs__inner,
  .aiers-page .aiers-schedule__inner,
  .aiers-page .aiers-journey__inner,
  .aiers-page .aiers-promise-one__inner,
  .aiers-page .aiers-promise-two__inner,
  .aiers-page .aiers-apply__inner,
  .aiers-page .aiers-faq__inner,
  .aiers-page .aiers-deadline__inner {
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .aiers-page .aiers-price__lead,
  .aiers-page .aiers-price__lead h2,
  .aiers-page .aiers-price__chart,
  .aiers-page .aiers-price__baseline,
  .aiers-page .aiers-price__bars,
  .aiers-page .aiers-price__card,
  .aiers-page .aiers-price__card-head,
    .aiers-page .aiers-price__button,
    .aiers-page .aiers-results__title h2,
    .aiers-page .aiers-results__teaser-row,
    .aiers-page .aiers-ai-image__card-copy,
    .aiers-page .aiers-workflow-results__cards,
    .aiers-page .aiers-workflow-results__top-row,
    .aiers-page .aiers-system-bridge__headline,
    .aiers-page .aiers-ip-character h2,
    .aiers-page .aiers-beginner__title,
    .aiers-page .aiers-beginner__title h2,
    .aiers-page .aiers-beginner__title p,
    .aiers-page .aiers-beginner__content,
    .aiers-page .aiers-beginner__featured,
    .aiers-page .aiers-beginner__feature-card,
    .aiers-page .aiers-beginner__tiles,
    .aiers-page .aiers-process h2,
    .aiers-page .aiers-process__callout,
  .aiers-page .aiers-process__compare-list,
  .aiers-page .aiers-process__compare,
  .aiers-page .aiers-process__before-after,
  .aiers-page .aiers-questions h2,
  .aiers-page .aiers-questions__chat,
  .aiers-page .aiers-materials h2,
    .aiers-page .aiers-materials__cards,
    .aiers-page .aiers-s10-bridge__headline,
    .aiers-page .aiers-work-method h2,
    .aiers-page .aiers-work-method__content,
    .aiers-page .aiers-work-method__callout,
    .aiers-page .aiers-interview__title,
    .aiers-page .aiers-interview__list,
    .aiers-page .aiers-interview__item,
    .aiers-page .aiers-interview__item--one,
    .aiers-page .aiers-interview__item--two,
    .aiers-page .aiers-interview__item--three,
    .aiers-page .aiers-interview__content,
    .aiers-page .aiers-interview__question,
    .aiers-page .aiers-interview__answer,
  .aiers-page .aiers-programs__group,
  .aiers-page .aiers-programs__title,
  .aiers-page .aiers-programs__cards,
  .aiers-page .aiers-programs__card,
  .aiers-page .aiers-programs__card-inner,
  .aiers-page .aiers-programs__card-main,
  .aiers-page .aiers-programs__head,
  .aiers-page .aiers-programs__description,
  .aiers-page .aiers-programs__notes,
  .aiers-page .aiers-programs__footnote,
  .aiers-page .aiers-schedule__title,
  .aiers-page .aiers-schedule__parts,
  .aiers-page .aiers-schedule__part,
  .aiers-page .aiers-schedule__part-head,
  .aiers-page .aiers-schedule__body,
  .aiers-page .aiers-schedule__part--two .aiers-schedule__body,
  .aiers-page .aiers-schedule__slot,
  .aiers-page .aiers-schedule__copy,
  .aiers-page .aiers-schedule__copy p,
  .aiers-page .aiers-schedule__divider,
  .aiers-page .aiers-schedule__result,
  .aiers-page .aiers-journey__title,
  .aiers-page .aiers-journey__cards,
  .aiers-page .aiers-journey__card,
  .aiers-page .aiers-promise-one__title,
  .aiers-page .aiers-promise-one__items,
  .aiers-page .aiers-promise-one__item,
  .aiers-page .aiers-promise-one__visual,
  .aiers-page .aiers-promise-one__copy p,
  .aiers-page .aiers-promise-two__title,
  .aiers-page .aiers-promise-two__grid,
  .aiers-page .aiers-promise-two__card,
  .aiers-page .aiers-promise-two__copy h3,
  .aiers-page .aiers-promise-two__copy p,
  .aiers-page .aiers-promise-two__visual,
  .aiers-page .aiers-apply__title,
  .aiers-page .aiers-apply__content,
  .aiers-page .aiers-apply__price,
  .aiers-page .aiers-apply__discount,
  .aiers-page .aiers-apply__details,
  .aiers-page .aiers-apply__summary-cards,
  .aiers-page .aiers-apply__benefits,
  .aiers-page .aiers-apply__cta-wrap,
  .aiers-page .aiers-apply__remaining,
  .aiers-page .aiers-apply__buttons,
  .aiers-page .aiers-apply__button,
  .aiers-page .aiers-faq__answer,
  .aiers-page .aiers-faq__answer p,
  .aiers-page .aiers-recommend__title,
  .aiers-page .aiers-recommend__title span,
  .aiers-page .aiers-recommend__title strong,
  .aiers-page .aiers-deadline__button {
    width: 100%;
    max-width: 100%;
  }

  .aiers-page .aiers-hero__wash,
  .aiers-page .aiers-work-method__curve,
  .aiers-page .aiers-recommend__inner,
  .aiers-page .aiers-recommend__group {
    width: 100vw;
    max-width: none;
  }

  .aiers-page .aiers-results__title,
  .aiers-page .aiers-results__teasers {
    left: calc((100% - var(--aiers-mobile-content)) / 2);
    transform: none;
  }

  .aiers-page .aiers-results__teaser-scroll,
  .aiers-page .aiers-work-method__cards,
  .aiers-page .aiers-recommend__rail {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-left: var(--aiers-mobile-gutter);
    padding-right: 0;
  }

    .aiers-page .aiers-results__teaser-scroll {
      margin-right: calc(50% - 50vw);
    }

    .aiers-page .aiers-ip-character__viewport {
      width: 100vw;
      max-width: none;
      margin-left: calc(50% - 50vw);
    }

    .aiers-page .aiers-beginner {
      height: auto;
      min-height: 1388px;
    }

    .aiers-page .aiers-ip-character__cards {
      margin-left: max(var(--aiers-mobile-gutter), calc((100vw - var(--aiers-mobile-content)) / 2));
    }

    .aiers-page .aiers-work-method__cards,
    .aiers-page .aiers-recommend__rail {
      overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .aiers-page .aiers-work-method__cards::-webkit-scrollbar,
  .aiers-page .aiers-recommend__rail::-webkit-scrollbar {
    display: none;
  }

    .aiers-page .aiers-beginner__tiles,
    .aiers-page .aiers-process__before-after {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aiers-page .aiers-beginner__featured,
    .aiers-page .aiers-beginner__content {
      height: auto;
    }

    .aiers-page .aiers-beginner__feature-card {
      height: 300px;
    }

    .aiers-page .aiers-beginner__tile,
    .aiers-page .aiers-beginner__tile div,
    .aiers-page .aiers-process__before,
  .aiers-page .aiers-process__after,
  .aiers-page .aiers-work-method__callout p {
    width: 100%;
  }

  .aiers-page .aiers-process__inner {
    width: 100%;
    max-width: none;
  }

  .aiers-page .aiers-process h2,
  .aiers-page .aiers-process__callout,
  .aiers-page .aiers-process__compare-list {
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
    margin-right: auto;
  }

    .aiers-page .aiers-process__cards {
      width: 100vw;
      margin-left: calc(var(--aiers-mobile-gutter) * -1);
    }

    .aiers-page .aiers-work-method__card {
      flex-basis: min(380px, calc(var(--aiers-mobile-content) - 24px));
      width: min(380px, calc(var(--aiers-mobile-content) - 24px));
    }

    .aiers-page .aiers-work-method__steps,
    .aiers-page .aiers-work-method__state,
    .aiers-page .aiers-work-method__state-inner,
    .aiers-page .aiers-work-method__state p {
      width: 100%;
    }

  .aiers-page .aiers-questions__user {
    width: 100%;
    justify-content: flex-end;
  }

  .aiers-page .aiers-questions__user--one,
  .aiers-page .aiers-questions__user--two {
    right: 0;
    left: auto;
  }

  .aiers-page .aiers-questions__bubble {
    white-space: normal;
  }

  .aiers-page .aiers-questions__user--one .aiers-questions__bubble--question,
  .aiers-page .aiers-questions__user--two .aiers-questions__bubble--question {
    width: auto;
    max-width: calc(100% - 60px);
    min-height: 43px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .aiers-page .aiers-questions__answer--one,
  .aiers-page .aiers-questions__answer--two {
    width: 100%;
  }

  .aiers-page .aiers-questions__bubble--answer {
    max-width: calc(100% - 60px);
    min-height: 43px;
    height: auto;
  }

  .aiers-page .aiers-questions__answer--one .aiers-questions__bubble--answer,
  .aiers-page .aiers-questions__answer--two .aiers-questions__bubble--answer {
    width: min(256px, calc(100% - 60px));
  }

  .aiers-page .aiers-questions__image {
    width: min(229px, calc(100% - 60px));
  }

  .aiers-page .aiers-programs__heading,
  .aiers-page .aiers-schedule__main,
  .aiers-page .aiers-schedule__copy,
  .aiers-page .aiers-schedule__result strong {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .aiers-page .aiers-schedule__slot,
  .aiers-page .aiers-schedule__main,
  .aiers-page .aiers-schedule__divider,
  .aiers-page .aiers-schedule__result {
    width: 100%;
  }

  .aiers-page .aiers-schedule__copy p {
    width: auto;
  }

  .aiers-page .aiers-schedule__body,
  .aiers-page .aiers-schedule__part--two .aiers-schedule__body {
    height: auto;
  }

  .aiers-page .aiers-schedule__part--one {
    height: 472px;
  }

  .aiers-page .aiers-schedule__part--two {
    height: 442px;
  }

  .aiers-page .aiers-schedule__body {
    height: 418px;
  }

  .aiers-page .aiers-schedule__part--two .aiers-schedule__body {
    height: 388px;
  }

  .aiers-page .aiers-recommend__inner,
  .aiers-page .aiers-recommend__group {
    margin-right: auto;
    margin-left: auto;
  }

  .aiers-page .aiers-recommend__title {
    height: auto;
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }

  .aiers-page .aiers-recommend__rail {
    gap: 10px;
    margin-right: calc(50% - 50vw);
  }

  .aiers-page .aiers-recommend__body,
  .aiers-page .aiers-recommend__body > .aiers-recommend__teacher,
  .aiers-page .aiers-recommend__body h3,
  .aiers-page .aiers-recommend__desc {
    width: calc(100% - 28px);
  }

    .aiers-page .aiers-deadline__inner {
      width: min(320px, var(--aiers-mobile-content));
    }
  }

@media (max-width: 359px) {
  .aiers-page .aiers-beginner__feature-card {
    height: 330px;
  }

  .aiers-page .aiers-beginner__project-art,
  .aiers-page .aiers-beginner__assistant-art {
    top: 190px;
  }
}

@media (min-width: 560px) and (max-width: 767px) {
  .aiers-page .aiers-process__compare-list {
    margin-left: auto;
  }
}

.aiers-page .aiers-desktop-fixed-cta,
.aiers-page .aiers-mobile-fixed-cta {
  display: none;
}

@media (max-width: 767px) {
  .aiers-page .aiers-desktop-fixed-cta {
    display: none;
  }

  .aiers-page .aiers-mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100vw;
    min-height: 128px;
    padding: 0 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    color: #121212;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  }

  .aiers-page .aiers-mobile-fixed-cta__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(100% + 32px);
    height: 36px;
    margin: 0 -16px;
    overflow: hidden;
    padding: 0 23px;
    background: #ff6b4a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
  }

  .aiers-page .aiers-mobile-fixed-cta__timer span,
  .aiers-page .aiers-mobile-fixed-cta__timer strong {
    display: block;
    min-width: 0;
    color: inherit;
    font: inherit;
  }

  .aiers-page .aiers-mobile-fixed-cta__timer strong {
    flex: 0 1 auto;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
  }

  .aiers-page .aiers-mobile-fixed-cta__seats {
    margin: 0;
    color: #5e5d59;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
  }

  .aiers-page .aiers-mobile-fixed-cta__seats span {
    color: #ff6b4a;
    font-weight: 800;
  }

  .aiers-page .aiers-mobile-fixed-cta__button {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 520px;
    height: 48px;
    padding: 10px 8px;
    border-radius: 8px;
    background: #ff6b4a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .aiers-page .aiers-mobile-fixed-cta {
    display: none;
  }

  .aiers-page .aiers-desktop-fixed-cta {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 60;
    display: block;
    width: min(712px, calc(100vw - 32px));
    height: 88px;
    color: #fff;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .aiers-page .aiers-desktop-fixed-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    height: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    pointer-events: auto;
  }

  .aiers-page .aiers-desktop-fixed-cta__copy {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
  }

  .aiers-page .aiers-desktop-fixed-cta__seats,
  .aiers-page .aiers-desktop-fixed-cta__timer {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
  }

  .aiers-page .aiers-desktop-fixed-cta__seats span,
  .aiers-page .aiers-desktop-fixed-cta__timer strong {
    color: #ff6b4a;
    font: inherit;
  }

  .aiers-page .aiers-desktop-fixed-cta__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 328px;
    height: 56px;
  }

  .aiers-page .aiers-desktop-fixed-cta__share {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
  }

  .aiers-page .aiers-desktop-fixed-cta__share svg {
    display: block;
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  .aiers-page .aiers-desktop-fixed-cta__button {
    display: grid;
    place-items: center;
    flex: 0 0 260px;
    width: 260px;
    height: 56px;
    padding: 0 16px;
    border-radius: 8px;
    background: #ff6b4a;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }
}

/* 3dchar Figma section overrides */
.aiers-page .aiers-results--3dchar {
  overflow: hidden;
  height: auto;
  min-height: 0;
  background: #fff3ef;
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
}

.aiers-page .aiers-results--3dchar .aiers-results__title {
  position: static;
  top: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto 24px;
  width: 1280px;
  max-width: 100%;
  text-align: center;
}

.aiers-page .aiers-results--3dchar .aiers-results__title h2 {
  width: 100%;
  color: #121212;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.aiers-page .aiers-results__title-copy {
  display: block;
}

.aiers-page .aiers-results__title-copy--mobile {
  display: none;
}

.aiers-page .aiers-results--3dchar .aiers-results__title-emphasis {
  color: #ff6b4a;
}

.aiers-page .aiers-results--3dchar .aiers-results__title-normal {
  color: #121212;
}

.aiers-page .aiers-results__chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}

.aiers-page .aiers-results__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 12px 20px;
  border: 1px solid #ffc8b7;
  border-radius: 999px;
  background: #ff6b4a;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.aiers-page .aiers-results__scroll {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.aiers-page .aiers-results__scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.aiers-page .aiers-results--3dchar .aiers-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 305px);
  grid-auto-rows: 313px;
  gap: 20px;
  width: 1280px;
  max-width: 100%;
  margin: 0;
}

.aiers-page .aiers-results__tile {
  position: relative;
  overflow: hidden;
  height: 313px;
  margin: 0;
  border-radius: 12px;
  background: #fff;
}

.aiers-page .aiers-results__tile--wide {
  grid-column: span 2;
}

/* Wide video tiles tint the loading gap with a poster-derived tone so a slow
   mobile fetch doesn't flash harsh white before the poster paints. */
.aiers-page .aiers-results--3dchar .aiers-results__tile--wide,
.aiers-page .aiers-results--3dchar .aiers-results__tile--wide video {
  background: #b89f9e;
}

.aiers-page .aiers-results__tile img,
.aiers-page .aiers-results__tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.aiers-page .aiers-results__asset {
  transition: opacity 420ms ease;
}

.aiers-page .aiers-results--3dchar .aiers-results__asset--v1 {
  animation: aiers-results-v1-cycle 6s ease-in-out infinite;
}

.aiers-page .aiers-results__asset--v2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.aiers-page .aiers-results--3dchar .aiers-results__asset--v2 {
  animation: aiers-results-v2-cycle 6s ease-in-out infinite;
}

.aiers-page .aiers-results__grid.is-v2 .aiers-results__asset--v1 {
  opacity: 0;
}

.aiers-page .aiers-results__grid.is-v2 .aiers-results__asset--v2 {
  opacity: 1;
}

@keyframes aiers-results-v1-cycle {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aiers-results-v2-cycle {
  0%,
  45% {
    opacity: 0;
  }

  50%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page .aiers-results__asset {
    transition: none;
  }
}

.aiers-page .aiers-workflow-results--3dchar {
  background: #fff;
}

.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__headline h2 {
  color: #121212;
}

.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__headline h2 em,
.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__emphasis span {
  color: #ff6b4a;
}

.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__image--single {
  height: 326px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__image--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__emphasis {
  min-height: 125px;
}

.aiers-page .aiers-workflow-results__motion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.aiers-page .aiers-workflow-results__motion-grid img,
.aiers-page .aiers-workflow-results__motion-grid video {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.aiers-page .aiers-process__thumb img,
.aiers-page .aiers-process__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual img[src*="3dchar"]:not(.aiers-process__ba-status) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aiers-page .aiers-process__ba-visual .aiers-process__ba-status {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .aiers-page .aiers-process__ba-visual .aiers-process__ba-status {
    width: 30px;
    height: 30px;
  }

  .aiers-page .aiers-results--3dchar {
    height: 620px;
    padding: 60px 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .aiers-page .aiers-results--3dchar .aiers-results__title {
    align-items: flex-start;
    gap: 0;
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
    margin: 0 auto 20px;
    text-align: left;
  }

  .aiers-page .aiers-results--3dchar .aiers-results__title h2 {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
    line-height: 1.25;
  }

  .aiers-page .aiers-results__title-copy--desktop {
    display: none;
  }

  .aiers-page .aiers-results__title-copy--mobile {
    display: block;
  }

  .aiers-page .aiers-results__chips {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
    width: max-content;
    max-width: none;
  }

  .aiers-page .aiers-results__chips span {
    height: 34px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.25;
  }

  .aiers-page .aiers-results__scroll {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .aiers-page .aiers-results__scroll::-webkit-scrollbar {
    display: none;
  }

  .aiers-page .aiers-results__scroll-inner {
    align-items: flex-start;
    gap: 32px;
    width: max-content;
    min-width: max-content;
    padding-right: max(var(--aiers-mobile-gutter), calc((100vw - var(--aiers-mobile-content)) / 2));
    padding-left: max(var(--aiers-mobile-gutter), calc((100vw - var(--aiers-mobile-content)) / 2));
  }

  .aiers-page .aiers-results--3dchar .aiers-results__grid {
    grid-template-columns: repeat(4, 166.5px);
    grid-template-rows: repeat(2, 172px);
    grid-auto-rows: 172px;
    gap: 10px;
    width: max-content;
    max-width: none;
    margin: 0;
  }

  .aiers-page .aiers-results__tile {
    height: 172px;
    border-radius: 8px;
  }

  .aiers-page .aiers-results__tile:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .aiers-page .aiers-results__tile:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .aiers-page .aiers-results__tile:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .aiers-page .aiers-results__tile:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
  }

  .aiers-page .aiers-results__tile:nth-child(5) {
    grid-column: 4;
    grid-row: 1;
  }

  .aiers-page .aiers-results__tile:nth-child(6) {
    grid-column: 3 / span 2;
    grid-row: 2;
  }

  .aiers-page .aiers-workflow-results__motion-grid {
    grid-template-columns: 1fr;
  }

  .aiers-page .aiers-workflow-results__motion-grid img,
  .aiers-page .aiers-workflow-results__motion-grid video {
    height: 240px;
  }

}

/* 3dchar section locks: keep Figma section backgrounds/layout from being reset by later generic responsive rules. */
.aiers-page .aiers-transition-band {
  background-color: #ff6b4a;
}

.aiers-page .aiers-ai-image {
  background-color: #141414;
}

.aiers-page .aiers-workflow-results--3dchar,
.aiers-page .aiers-beginner {
  background-color: #fff;
}

.aiers-page .aiers-questions[data-section="10-questions"] {
  background-color: #fff8f5;
}

.aiers-page .aiers-materials[data-section="11-materials"] {
  background-color: #0e0e0e;
}

.aiers-page .aiers-materials[data-section="11-materials"]::before {
  background: linear-gradient(180deg, #0e0e0e 74.273%, #ff6b4a 231.61%);
}

.aiers-page .aiers-s10-bridge[data-section="12-transition-system"] {
  background-color: #121212;
}

.aiers-page .aiers-work-method[data-section="13-work-method"] {
  background-color: #fff3ef;
}

.aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__content,
.aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__cards,
.aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__callout {
  width: 1280px;
  max-width: 1280px;
}

.aiers-page .aiers-process[data-section="09-process-steps"] {
  height: auto;
  padding: 120px 0;
  overflow: hidden;
  background-color: #fff3ef;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__inner {
  width: 1280px;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__cards {
  display: grid;
  grid-template-columns: repeat(2, 630px);
  gap: 20px;
  width: 1280px;
  max-width: 1280px;
  margin-left: 0;
  overflow: visible;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__course-card {
  width: 630px;
  height: 592px;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__card-copy {
  box-sizing: border-box;
  height: 238px;
  min-height: 238px;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__callout,
.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare,
.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare-list {
  width: 1280px;
  max-width: 1280px;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__before-after {
  grid-template-columns: repeat(2, 630px);
  width: 1280px;
  gap: 20px;
}

.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__before,
.aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__after {
  width: 630px;
  height: 443px;
}

@media (max-width: 767px) {
  .aiers-page .aiers-ai-image {
    background-color: #1e1e1e;
  }

  .aiers-page .aiers-ai-image .aiers-ai-image__card-copy,
  .aiers-page .aiers-ai-image .aiers-ai-image__card--two .aiers-ai-image__card-copy,
  .aiers-page .aiers-ai-image .aiers-ai-image__card--three .aiers-ai-image__card-copy {
    width: 303px;
    max-width: 303px;
  }

  .aiers-page .aiers-materials[data-section="11-materials"] {
    background-color: #191919;
  }

  .aiers-page .aiers-work-method[data-section="13-work-method"] {
    background-color: #fff3ef;
  }

  .aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__content,
  .aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__callout {
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
  }

  .aiers-page .aiers-work-method[data-section="13-work-method"] .aiers-work-method__cards {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-left: max(var(--aiers-mobile-gutter), calc((100vw - var(--aiers-mobile-content)) / 2));
    padding-right: var(--aiers-mobile-gutter);
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] {
    height: 2583px;
    padding: 60px 0;
    background-color: #fff3ef;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 40px;
  }

    .aiers-page .aiers-process[data-section="09-process-steps"] h2,
  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__callout,
  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare,
  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare-list {
    width: var(--aiers-mobile-content);
    max-width: var(--aiers-mobile-max);
    margin-right: auto;
    margin-left: auto;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__cards {
    display: flex;
    width: 100vw;
    max-width: none;
    height: 422px;
    margin-left: 0;
    padding-left: max(var(--aiers-mobile-gutter), calc((100vw - var(--aiers-mobile-content)) / 2));
    padding-right: var(--aiers-mobile-gutter);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__course-card {
    flex: 0 0 320px;
    width: 320px;
    height: 422px;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__card-copy {
    box-sizing: border-box;
    height: 242px;
    min-height: 242px;
    overflow: hidden;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__card-copy h3 {
    line-height: 1.4;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__card-copy ul {
    line-height: 1.62;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__callout {
    box-sizing: border-box;
    height: 94px;
    min-height: 94px;
    margin-top: -20px;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__before-after {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare:nth-child(-n + 2) {
    height: 426px;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__compare:nth-child(n + 3) {
    height: 456px;
  }

  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__before,
  .aiers-page .aiers-process[data-section="09-process-steps"] .aiers-process__after {
    width: 100%;
    min-width: 0;
    height: 286px;
  }
}

/* Scroll reveal */
.aiers-page [data-aiers-reveal] {
  --aiers-reveal-x: 0px;
  --aiers-reveal-y: 22px;
  --aiers-reveal-scale: 1;
  --aiers-reveal-delay: calc(var(--aiers-reveal-index, 0) * 64ms);
}

.aiers-page [data-aiers-reveal="fade-left"] {
  --aiers-reveal-x: -24px;
  --aiers-reveal-y: 0px;
}

.aiers-page [data-aiers-reveal="fade-right"] {
  --aiers-reveal-x: 24px;
  --aiers-reveal-y: 0px;
}

.aiers-page [data-aiers-reveal="scale-in"] {
  --aiers-reveal-y: 18px;
  --aiers-reveal-scale: 0.985;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal]:not([data-aiers-reveal="fade-only"]):not([data-aiers-reveal="bar-grow"]) {
  opacity: 0;
  transform: translate3d(var(--aiers-reveal-x), var(--aiers-reveal-y), 0) scale(var(--aiers-reveal-scale));
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1) var(--aiers-reveal-delay),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1) var(--aiers-reveal-delay);
  will-change: opacity, transform;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal]:not([data-aiers-reveal="fade-only"]):not([data-aiers-reveal="bar-grow"]).is-aiers-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.aiers-page.is-aiers-motion-ready .aiers-beginner [data-aiers-reveal],
.aiers-page.is-aiers-motion-ready .aiers-beginner [data-aiers-reveal].is-aiers-visible {
  opacity: 1;
  transform: none;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal="fade-only"] {
  opacity: 0;
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1) var(--aiers-reveal-delay);
  will-change: opacity;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal="fade-only"].is-aiers-visible {
  opacity: 1;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal="bar-grow"] {
  opacity: 1;
  transform: scaleY(0.04);
  transform-origin: bottom center;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1) var(--aiers-reveal-delay);
  will-change: transform;
}

.aiers-page.is-aiers-motion-ready [data-aiers-reveal="bar-grow"].is-aiers-visible {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .aiers-page.is-aiers-motion-ready [data-aiers-reveal]:not([data-aiers-reveal="fade-only"]),
  .aiers-page.is-aiers-motion-ready [data-aiers-reveal]:not([data-aiers-reveal="fade-only"]).is-aiers-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }

  .aiers-page.is-aiers-motion-ready [data-aiers-reveal="fade-only"],
  .aiers-page.is-aiers-motion-ready [data-aiers-reveal="fade-only"].is-aiers-visible {
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}

@media (max-width: 767px) {
  .aiers-page .aiers-workflow-results--3dchar {
    height: 1528px;
    padding: 60px 16px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__inner {
    gap: 40px;
    width: 100%;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__headline {
    gap: 12px;
    height: 165px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__cards {
    gap: 10px;
    width: 100%;
    margin-top: 0;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__card {
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__card--keyvisual,
  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__card--teaser {
    gap: 16px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__copy {
    min-height: 70px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__card--chat .aiers-workflow-results__copy {
    min-height: 88px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__top-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__image--single {
    height: 175px;
    border-radius: 8px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__motion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__motion-grid img,
  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__motion-grid video {
    height: 102px;
    border-radius: 4px;
  }

  .aiers-page .aiers-workflow-results--3dchar .aiers-workflow-results__emphasis {
    min-height: 117px;
    padding: 24px 27px;
    border-width: 1px;
    border-radius: 6px;
  }
}

@media (min-width: 768px) {
  .aiers-page.is-aiers-motion-ready .aiers-ai-image__card--one.is-aiers-visible {
    transform: rotate(-1.19deg) !important;
  }

  .aiers-page.is-aiers-motion-ready .aiers-ai-image__card--two.is-aiers-visible {
    transform: rotate(1.87deg) !important;
  }

  .aiers-page.is-aiers-motion-ready .aiers-ai-image__card--three.is-aiers-visible {
    transform: rotate(2.76deg) !important;
  }
}

@media (max-width: 767px) {
  .aiers-page .aiers-questions {
    height: auto;
    min-height: 0;
    padding: 56px 16px 104px;
  }

  .aiers-page .aiers-questions__inner {
    gap: 28px;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
  }

  .aiers-page .aiers-questions h2 {
    width: 100%;
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .aiers-page .aiers-questions__chat {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
  }

  .aiers-page .aiers-questions__user,
  .aiers-page .aiers-questions__answer,
  .aiers-page .aiers-questions__user--one,
  .aiers-page .aiers-questions__user--two,
  .aiers-page .aiers-questions__answer--one,
  .aiers-page .aiers-questions__answer--two {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .aiers-page .aiers-questions__user {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
  }

  .aiers-page .aiers-questions__user--one {
    order: 1;
  }

  .aiers-page .aiers-questions__answer--one {
    order: 2;
  }

  .aiers-page .aiers-questions__user--two {
    order: 3;
    margin-top: 12px;
  }

  .aiers-page .aiers-questions__answer--two {
    order: 4;
  }

  .aiers-page .aiers-questions__answer {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    align-items: start;
  }

  .aiers-page .aiers-questions__avatar {
    width: 50px;
    height: 50px;
  }

  .aiers-page .aiers-questions__bubble {
    height: auto;
    min-height: 0;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
  }

  .aiers-page .aiers-questions__bubble--question,
  .aiers-page .aiers-questions__user--one .aiers-questions__bubble--question,
  .aiers-page .aiers-questions__user--two .aiers-questions__bubble--question {
    width: auto;
    max-width: calc(100% - 58px);
    margin: 0;
    padding: 11px 16px;
    border-radius: 18px 0 18px 18px;
  }

  .aiers-page .aiers-questions__bubble--answer,
  .aiers-page .aiers-questions__answer--one .aiers-questions__bubble--answer,
  .aiers-page .aiers-questions__answer--two .aiers-questions__bubble--answer {
    position: static;
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 14px 18px;
    border-radius: 0 18px 18px;
  }

  .aiers-page .aiers-questions__image,
  .aiers-page .aiers-questions__answer--two .aiers-questions__image {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 229 / 128;
    margin: 0;
    border-radius: 12px;
  }

  .aiers-page .aiers-questions__image--setting {
    border-radius: 8px;
  }

  .aiers-page .aiers-questions__image figcaption {
    top: 8px;
    left: 8px;
    padding: 4px 6px;
    border-width: 0.5px;
    font-size: 9px;
    letter-spacing: 0;
  }
}

.aiers-page .aiers-info__list {
  height: auto;
  min-height: 304px;
}

.aiers-page .aiers-info__list .aiers-info__schedule-row {
  align-items: flex-start;
  padding-bottom: 0;
  margin-bottom: 0;
}

.aiers-page .aiers-info__list .aiers-info__schedule-row.is-in {
  padding-bottom: 12px;
  margin-bottom: 0;
}

.aiers-page .aiers-info__item--schedule {
  align-items: flex-start;
  min-height: 112px;
  padding: 12px 0;
}

.aiers-page .aiers-info__schedule-row .aiers-info__label {
  padding-top: 0;
  transform: translateY(18px);
}

.aiers-page .aiers-info__schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 400px;
  min-height: 0;
  height: auto;
  line-height: 1.2;
}

.aiers-page .aiers-info__schedule-note {
  color: #ff6b4a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.aiers-page .aiers-info__schedule-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aiers-page .aiers-info__schedule-option {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.aiers-page .aiers-info__schedule-text {
  flex: 0 1 auto;
  color: #121212;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.aiers-page .aiers-info__schedule-option i {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff0eb;
  color: #ff6b4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 861px) {
  .aiers-page .aiers-info__schedule-row .aiers-info__schedule {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .aiers-page .aiers-info__list .aiers-info__schedule-row {
    align-items: flex-start;
  }

  .aiers-page .aiers-info__list {
    height: auto;
    min-height: 232px;
    justify-content: flex-start;
  }

  .aiers-page .aiers-info__item,
  .aiers-page .aiers-info__item:first-child,
  .aiers-page .aiers-info__item:last-child {
    height: auto;
    min-height: 32px;
    padding: 8px 0;
  }

  .aiers-page .aiers-info__item--schedule,
  .aiers-page .aiers-info__item--schedule:first-child {
    align-items: flex-start;
    min-height: 96px;
  }

  .aiers-page .aiers-info__schedule-row .aiers-info__label {
    padding-top: 0;
    transform: translateY(21px);
  }

  .aiers-page .aiers-info__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .aiers-page .aiers-info__item strong,
  .aiers-page .aiers-info__schedule {
    height: auto;
    min-height: 0;
    line-height: 1.35;
  }

  .aiers-page .aiers-info__schedule {
    gap: 4px;
    max-width: 237px;
  }

  .aiers-page .aiers-info__schedule-note {
    width: 100%;
    font-size: 12px;
    line-height: 1.2;
    text-align: right;
  }

  .aiers-page .aiers-info__schedule-options {
    gap: 4px;
    width: 100%;
  }

  .aiers-page .aiers-info__schedule-option {
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
  }

  .aiers-page .aiers-info__schedule-text {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    max-width: 172px;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    white-space: nowrap;
  }

  .aiers-page .aiers-info__schedule-option i {
    padding: 3px 6px;
    font-size: 10px;
  }
}

@media (max-width: 374px) {
  .aiers-page .aiers-info__schedule-options {
    max-width: 218px;
  }

  .aiers-page .aiers-info__schedule-text {
    font-size: 11px;
  }

  .aiers-page .aiers-info__schedule-option i {
    font-size: 10px;
  }
}
