@font-face {
  font-family: "Pretendard Variable";
  src: url("./fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Gambarino Regular";
  src: url("./fonts/Gambarino-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CabinetGrotesk Variable";
  src: url("./fonts/CabinetGrotesk-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  font-family: "Pretendard Variable", sans-serif;
  word-break: keep-all;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.u-muted {
  opacity: 0.4;
}

.u-text-white {
  color: #fff !important;
}

.u-hidden-desktop {
  display: none;
}

.u-muted.scroll-reveal {
  --reveal-opacity: 0.4;
}

.scroll-reveal {
  opacity: 0;
  transform: var(--reveal-transform-from, translateY(48px));
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-revealed {
  opacity: var(--reveal-opacity, 1);
  transform: var(--reveal-transform-to, translateY(0));
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: var(--reveal-opacity, 1);
    transform: var(--reveal-transform-to, none);
    transition: none;
  }
}

/* header */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease-out;
}

.header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease-out;
}

.header__nav {
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.header__link {
  color: rgb(0 0 0 / 40%);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: color 0.2s ease;
}

.header__link:hover {
  color: #000;
}

.header__logo img {
  width: 172px;
  height: auto;
  aspect-ratio: 43/8;
  display: block;
}

.page-main {
  margin-top: 128px;
}

/* hero */
.hero__intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 176px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.hero__title--desktop {
  color: #000;
  text-align: center;
  font-family: "Gambarino Regular", sans-serif;
  font-size: 108px;
  font-weight: 400;
  line-height: 120px;
}

.hero__title--mobile {
  display: none;
}

.hero__intro a {
  padding: 20px 32px;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: opacity 0.3s ease;
}

.hero__intro a:hover {
  opacity: 0.5;
}

.hero__marquee {
  width: 100%;
  overflow: hidden;
}

.hero__marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee-desktop-left 30s linear infinite;
}

.hero__marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex: 0 0 auto;
}

.hero__marquee-group img {
  width: 900px;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  flex: 0 0 auto;
}

@keyframes marquee-desktop-left {
  from {
    transform: translateX(calc(50vw - 1398px));
  }
  to {
    transform: translateX(calc(-50% + 50vw - 1398px));
  }
}

.hero__description--desktop {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 52px;
  padding: 240px 40px;
}

.hero__description--desktop p {
  color: #000;
  text-align: center;
  font-family: "Gambarino Regular", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

.hero__description--mobile {
  display: none;
}

/* scale */
.scale {
  background-color: #000;
}

.scale__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 240px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 72px;
}

.section-heading--desktop {
  color: #000;
  text-align: center;
  font-family: "Gambarino Regular", sans-serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 96px;
}

.section-heading--mobile {
  display: none;
}

.scale__list {
  display: flex;
  gap: 24px;
}

.scale__list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.scale__list li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  padding: 72px;
  background-color: #111112;
  border-radius: 24px;
}

.scale__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.scale__item-text h3 {
  color: #fff;
  font-family: "CabinetGrotesk Variable", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.scale__item-text p {
  color: #747474;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* audience */
.audience {
  position: relative;
}

.audience__heading-bg {
  position: relative;
  padding: 240px 120px 328px;
  background: linear-gradient(180deg, #000 0%, #f9423a 80%);
}

.audience__heading-text {
  display: block;
}

.audience img {
  width: 906px;
  height: auto;
  aspect-ratio: 906/484;
  position: absolute;
  top: 552px;
  left: 50%;
  transform: translateX(-50%);
}

.audience__intro--mobile img.scroll-reveal {
  --reveal-transform-from: translate(-50%, 48px);
  --reveal-transform-to: translate(-50%, 0);
}

.audience__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 272px;
}

.audience__list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding: 48px;
  border-radius: 24px;
  background-color: #f7f7f7;
}

.audience__list li span {
  color: #f9423a;
  font-size: 48px;
  font-weight: 700;
  line-height: 36px;
}

.audience__list li h3 {
  color: #000;
  font-family: "CabinetGrotesk Variable", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.audience__list li p {
  color: rgb(0 0 0 / 60%);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* formats */
.formats {
  padding: 360px 40px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.formats__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.formats__list li img {
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
  display: block;
}

.formats__item-image {
  position: relative;
}

.formats__item-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 16px;
  border-radius: 26px;
  background-color: #666;
}

.formats__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px;
  background-color: #f3f3f3;
  border-radius: 24px;
  width: 100%;
  min-height: 358px;
}

.formats__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.formats__item-text h3 {
  color: #000;
  font-family: "CabinetGrotesk Variable", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.formats__item-text p {
  color: rgb(0 0 0 / 60%);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.formats__item-content button {
  padding: 16px 24px;
  border-radius: 26px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.formats__item-content button:hover {
  opacity: 0.5;
}

/* platform */
.platform {
  padding: 160px 40px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
}

.platform__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.platform__list li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid #eee;
}

.platform__list li h3 {
  color: #000;
  font-family: "CabinetGrotesk Variable", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.platform__list li p {
  color: rgb(0 0 0 / 60%);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.platform__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* contact */
.contact {
  padding: 160px 120px 64px;
  border-radius: 64px 64px 0 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 102px;
}

.contact__form {
  border-radius: 24px;
  background-color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.contact__form button {
  padding: 20px 32px;
  border-radius: 32px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact__form button:hover {
  opacity: 0.5;
}

.contact__form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact__form-notice {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #888;
  cursor: pointer;
}

.contact__form-notice input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #000;
}

.contact__form-notice-required {
  color: #f9423a;
  font-feature-settings: "case" on;
}

.contact__form-notice a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.contact__form-notice a:hover {
  opacity: 0.6;
}

.contact__form-status {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  min-height: 20px;
}

.contact__form-status[data-state="success"] {
  color: #1a7f37;
}

.contact__form-status[data-state="error"] {
  color: #f9423a;
}

.contact__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.contact__fields li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.contact__fields li label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact__fields li label span {
  color: #f9423a;
  font-feature-settings: "case" on;
}

.contact__fields li:last-child {
  grid-column: 1 / -1;
}

.contact__fields li input,
.contact__fields li textarea,
.contact__fields li select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #eee;
  font: inherit;
  color: inherit;
  background-color: #fff;
}

.contact__fields li textarea {
  min-height: 72px;
}

.contact__fields li input::placeholder,
.contact__fields li textarea::placeholder {
  color: #bbb;
}

.contact__fields li select {
  appearance: none;
  background-image: url("./images/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 36px;
}

/* footer */
.footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(255 255 255 / 40%);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer__nav a {
  color: rgb(255 255 255 / 40%);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__nav-privacy {
  color: #fff;
  text-decoration: underline;
}

.footer__nav-privacy:hover {
  color: #fff;
}

/* 1280px ~ 1439px */
@media (max-width: 1439px) {
  /* header */
  .header__nav {
    max-width: 1208px;
  }

  /* hero */
  .hero__intro {
    max-width: 1208px;
    padding: 200px 40px;
  }

  .hero__title--desktop {
    font-size: 90px;
    line-height: 96px;
  }

  .hero__marquee-group img {
    width: 800px;
    height: 533px;
  }

  .hero__description--desktop {
    max-width: 1208px;
  }

  /* scale */
  .scale__inner {
    max-width: 1208px;
  }

  .section-heading--desktop {
    font-size: 84px;
    line-height: 84px;
  }

  .scale__item-text p {
    font-size: 16px;
    line-height: 28px;
  }

  /* audience */
  .audience__heading-bg {
    padding: 240px 40px 352px;
  }

  .audience img {
    width: 696px;
    top: 528px;
  }

  .audience__list {
    max-width: 1128px;
    padding-top: 208px;
  }

  .audience__list li {
    gap: 48px;
  }

  .audience__list li span {
    font-size: 36px;
  }

  .audience__list li h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .audience__list li p {
    font-size: 16px;
    line-height: 28px;
  }

  /* formats */
  .formats {
    max-width: 1208px;
  }

  .formats__item-content {
    min-height: 352px;
  }

  .formats__item-text p {
    font-size: 16px;
    line-height: 28px;
  }

  /* platform */
  .platform {
    max-width: 1208px;
  }

  .platform__list li h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .platform__list li p {
    font-size: 18px;
    line-height: 28px;
  }

  /* contact */
  .contact {
    padding: 160px 76px 64px;
  }

  .contact__inner {
    max-width: 1128px;
    padding: 0 96px;
  }
}

/* 1024px ~ 1279px */
@media (max-width: 1279px) {
  /* header */
  .header__nav {
    max-width: 960px;
    padding: 48px 24px;
  }

  /* hero */
  .hero__intro {
    max-width: 960px;
    padding: 176px 24px;
  }

  .hero__title--desktop {
    font-size: 72px;
    line-height: 80px;
  }

  .hero__marquee-group img {
    width: 640px;
    height: 427px;
  }

  .hero__description--desktop {
    max-width: 960px;
    padding: 160px 24px;
  }

  .hero__description--desktop p {
    font-size: 42px;
    line-height: 54px;
  }

  /* scale */
  .scale__inner {
    max-width: 960px;
    padding: 160px 24px;
    gap: 72px;
  }

  .section-heading--desktop {
    font-size: 72px;
    line-height: 72px;
  }

  .scale__list li img {
    padding: 48px;
  }

  /* audience */
  .audience__heading-bg {
    padding: 160px 32px 276px;
  }

  .audience img {
    width: 626px;
    top: 424px;
  }

  .audience__list {
    max-width: 912px;
    padding-top: 252px;
  }

  .audience__list li {
    gap: 32px;
    padding: 32px;
  }

  /* formats */
  .formats {
    max-width: 960px;
    padding: 240px 24px 160px;
  }

  .formats__item-content {
    min-height: 348px;
  }

  /* platform */
  .platform {
    max-width: 960px;
    padding: 120px 24px 240px;
  }

  .platform__list li h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .platform__list li p {
    font-size: 16px;
    line-height: 24px;
  }

  /* contact */
  .contact {
    padding: 160px 56px 64px;
  }

  .contact__inner {
    max-width: 912px;
    padding: 0;
  }
}

/* 768px ~ 1023px */
@media (max-width: 1023px) {
  .u-hidden-tablet {
    display: none;
  }

  /* header */
  .header__nav {
    max-width: 736px;
    padding: 48px 20px;
  }

  /* hero */
  .hero__intro {
    max-width: 736px;
    padding: 134px 20px;
  }

  .hero__title--desktop {
    font-size: 64px;
    line-height: 72px;
  }

  .hero__marquee-group img {
    width: 480px;
    height: 320px;
  }

  .hero__description--desktop {
    max-width: 736px;
    padding: 160px 20px;
  }

  .hero__description--desktop p {
    font-size: 32px;
    line-height: 42px;
  }

  /* scale */
  .scale__inner {
    max-width: 736px;
    padding: 160px 20px;
  }

  .section-heading--desktop {
    font-size: 64px;
    line-height: 64px;
  }

  .scale__list li img {
    padding: 24px;
  }

  .scale__item-text h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .scale__item-text p {
    font-size: 14px;
    line-height: 24px;
  }

  .formats__item-badge {
    top: 12px;
    right: 12px;
    font-size: 14px;
    line-height: 20px;
  }

  /* audience */
  .audience__heading-bg {
    padding: 160px 16px 254px;
  }

  .audience img {
    width: 522px;
    top: 408px;
  }

  .audience__list {
    max-width: 696px;
    padding-top: 226px;
  }

  .audience__list li {
    padding: 24px;
  }

  .audience__list li span {
    font-size: 32px;
  }

  .audience__list li h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .audience__list li p {
    font-size: 14px;
    line-height: 24px;
  }

  /* formats */
  .formats {
    padding: 200px 20px 160px;
    max-width: 736px;
  }

  .formats__item-content {
    padding: 32px;
    min-height: 328px;
  }

  .formats__item-text h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .formats__item-text p {
    font-size: 14px;
    line-height: 24px;
  }

  /* platform */
  .platform {
    padding: 120px 20px 160px;
    max-width: 736px;
  }

  /* contact */
  .contact {
    padding: 160px 36px 64px;
  }

  .contact__inner {
    max-width: 696px;
  }
}

/* mobile ~ 767px */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }

  .scroll-reveal {
    transform: var(--reveal-transform-from, translateY(32px));
    transition:
      opacity 0.7s ease,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .hero__marquee.scroll-reveal {
    --reveal-transform-from: translateY(20px);
    transition:
      opacity 0.75s ease,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .scale__list li.scroll-reveal,
  .audience__list li.scroll-reveal,
  .formats__list li.scroll-reveal {
    --reveal-transform-from: translateY(16px);
    --reveal-transform-to: translateY(0);
    transition:
      opacity 0.7s ease,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .u-hidden-desktop {
    display: block;
  }

  .u-hidden-mobile {
    display: none;
  }

  /* header */
  .header__nav {
    max-width: 100%;
    height: 72px;
    padding: 0 24px;
  }

  .header__logo img {
    width: 129px;
    height: auto;
    aspect-ratio: 43/8;
    display: block;
  }

  .header__actions--mobile {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .page-main {
    margin-top: 72px;
  }

  /* hero */
  .hero__intro {
    max-width: 100%;
    padding: 64px 24px;
    align-items: flex-start;
  }

  .hero__title--desktop {
    display: none;
  }

  .hero__title--mobile {
    display: block;
    color: #000;
    font-family: "Gambarino Regular", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 56px;
  }

  .hero__intro a {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 20px;
  }

  .hero__marquee-track {
    animation: marquee-mobile-left 18s linear infinite;
  }

  .hero__marquee-group {
    gap: 24px;
    padding-right: 24px;
  }

  .hero__marquee-group img {
    width: calc(100vw * 288 / 402);
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 24px;
  }

  @keyframes marquee-mobile-left {
    from {
      transform: translateX(calc(50vw - (100vw * 432 / 402) - 24px));
    }

    to {
      transform: translateX(calc(-50% + 50vw - (100vw * 432 / 402) - 24px));
    }
  }

  .hero__description--desktop {
    display: none;
  }

  .hero__description--mobile {
    display: flex;
    padding: 120px 24px;
    flex-direction: column;
    align-items: center;
    gap: 52px;
  }

  .hero__description--mobile p {
    color: #000;
    text-align: center;
    font-family: "Gambarino Regular", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
  }

  .hero__description-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero__description-group p {
    font-size: 22px;
    line-height: 26px;
  }

  /* scale */
  .scale__inner {
    max-width: 100%;
    padding: 120px 0;
    align-items: flex-start;
    gap: 60px;
  }

  .section-heading--desktop {
    display: none;
  }

  .section-heading--mobile {
    display: block;
    color: #000;
    font-family: "Gambarino Regular", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
  }

  .scale__inner .section-heading--mobile {
    padding: 0 36px;
  }

  .scale__swiper,
  .audience__swiper,
  .formats__swiper {
    width: 100%;
    overflow: hidden;
  }

  .scale__list,
  .audience__list,
  .formats__list,
  .platform__list {
    gap: 0;
  }

  .scale__list li {
    width: calc(100vw * 216 / 402);
    height: auto;
  }

  .formats__item-badge {
    padding: 4px 12px;
    font-size: 12px;
  }

  /* audience */
  .audience__intro--mobile {
    position: relative;
  }

  .audience__heading-bg {
    padding: 160px 24px calc(144px + (100vw - 402px) * 242 / 906);
  }

  .audience__intro--mobile img {
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: calc(100vw - 48px);
  }

  .audience__intro--mobile img.scroll-reveal {
    --reveal-transform-from: translate(-50%, calc(50% + 32px));
    --reveal-transform-to: translate(-50%, 50%);
  }

  .audience__list {
    max-width: 100%;
    padding-top: calc(135px + (100vw - 402px) * 242 / 906);
  }

  .audience__list li {
    width: calc(100vw * 240 / 402);
    height: auto;
  }

  /* formats */
  .formats {
    max-width: 100%;
    padding: 160px 0 120px;
    align-items: flex-start;
    gap: 60px;
  }

  .formats .section-heading--mobile {
    padding: 0 20px;
  }

  .formats__list li {
    width: calc(100vw * 288 / 402);
    height: auto;
  }

  .formats__item-content {
    min-height: 352px;
  }

  /* platform */
  .platform {
    padding: 60px 20px 120px;
    gap: 60px;
    max-width: 100%;
    align-items: flex-start;
  }

  .platform__list li {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }

  /* contact */
  .contact {
    padding: 64px 24px;
    border-radius: 36px 36px 0 0;
    gap: 48px;
  }

  .contact__inner {
    max-width: 100%;
    align-items: flex-start;
    gap: 48px;
  }

  .contact__form {
    padding: 24px;
  }

  .contact__form button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 20px;
  }

  .contact__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact__fields li textarea {
    min-height: 176px;
  }

  /* footer */
  .footer {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__nav {
    gap: 24px;
  }
}
