/* ARKS Case Study */

.arksCS-page {
  background: #fff;
  color: #060100;
}

/* ── Section 1: Hero (20032:37566) ── */
.arksCS-hero {
  position: relative;
  height: 779px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1d1d1d;
}

.arksCS-hero__bg {
  position: absolute;
  top: -53px;
  left: 0;
  width: 100%;
  height: calc(100% + 53px);
  object-fit: cover;
}

.arksCS-hero__overlay {
  position: absolute;
  left: -108px;
  right: -108px;
  bottom: 0;
  height: 68%;
  background: linear-gradient(
    180deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 1) 100%
  );
  opacity: 0.74;
  pointer-events: none;
}

.arksCS-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 22px 34px;
}

.arksCS-hero__label {
  font-family: var(
    --font-n,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
}

.arksCS-hero__title {
  font-family: var(
    --font-n,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 500;
  line-height: 0.88;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  max-width: 71%;
}

.arksCS-hero__content-wrap {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}

.arksCS-hero__subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 212px;
}

.arksCS-hero__subtitle {
  font-family: var(
    --font-n,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.arksCS-hero__subtitle-wrap img {
  display: block;
  width: 108.77px;
  height: auto;
  margin-left: 90px;
}

/* ── Collaboration — Figma 20288:15568 ── */
.arksCS-collab {
  padding: 120px 20px 100px;
  background: #fff;
}

.arksCS-collab__inner {
  max-width: 1464px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arksCS-collab__group {
  display: flex;
  align-items: center;
  gap: 17px;
  max-width: 351px;
}

.arksCS-collab__text {
  font-family: var(
    --font-n,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #1d1d1d;
  margin: 0;
  text-align: right;
  flex: 0 0 212px;
}

.arksCS-collab__logo {
  display: block;
  width: 134px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0);
}

/* ── Section 2: Meta + Overview (Paradigm-style) ── */

.arksCS-page .arksCS-infoPanel {
  padding: 32px 0 48px;
  max-width: 1464px;
  margin: 0 auto;
}

.arksCS-page .arksCS-infoPanel--overview {
  padding-bottom: 80px;
}

.arksCS-page .arksCS-infoPanel .listCS {
  padding-right: 24px;
  height: 100%;
}

.arksCS-page .arksCS-infoPanel .listCS.first {
  padding-left: 0;
}

.arksCS-page .arksCS-infoPanel .listCS.last {
  border-right: none;
  padding-right: 0;
}

.arksCS-page .arksCS-infoPanel h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #060100;
  margin-bottom: 16px;
}

.arksCS-page .arksCS-infoPanel .listCS li {
  font-size: 20px;
  line-height: 1.2;
  color: #1d1d1d;
}

/* ── Section 4: Full-width image ── */
.arksCS-fullImage {
  width: 100%;
}
.arksCS-centerVideo {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arksCS-videoPlayer {
  width: 100%;
  max-width: 829px;
}

.arksCS-videoPlayer__media {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #1d1d1d;
}

.arksCS-videoPlayer__poster {
  display: block;
  width: 100%;
  max-height: 622px;
  object-fit: cover;
  vertical-align: top;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.arksCS-videoPlayer__media video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.arksCS-videoPlayer--playing .arksCS-videoPlayer__poster {
  opacity: 0;
  visibility: hidden;
}

.arksCS-videoPlayer--playing .arksCS-videoPlayer__media video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.arksCS-videoPlayer__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.arksCS-videoPlayer__playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.arksCS-videoPlayer__playBtn:hover {
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.arksCS-videoPlayer--playing .arksCS-videoPlayer__overlay {
  opacity: 0;
  visibility: hidden;
}

.arksCS-videoPlayer--playing .arksCS-videoPlayer__playBtn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.arksCS-fullImage img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ── Section 5: Full-bleed video ── */
.arksCS-fullVideo {
  width: 100%;
}

.arksCS-fullVideo video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ── Challenge (Figma 20168:15281) ── */
.arksCS-challenge {
  padding: 0px 0 120px;
  background: #fff;
}

.arksCS-challenge__inner {
  max-width: 1464px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.arksCS-challenge__line {
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #1d1d1d;
  margin: 0;
}

.arksCS-challenge__grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.arksCS-challenge__label {
  flex: 0 0 351px;
  max-width: 351px;
  font-family: var(
    --font-f,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  color: #1d1d1d;
  margin: 0;
}

.arksCS-challenge__text {
  flex: 1;
  max-width: 1082px;
  font-family: var(
    --font-f,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #1d1d1d;
  margin: 0;
}

/* ── Stats (Figma 20179:3123) ── */
.arksCS-stats {
  padding: 0px 22px 100px;
  background: #fff;
}

.arksCS-stats__inner {
  max-width: 650px;
  margin: 0 auto;
}

.arksCS-stats__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  line-height: 1.2;
  letter-spacing: -0.0403em;
}

.arksCS-stats__number,
.arksCS-stats__views {
  font-family: var(
    --font-f,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: 110px;
  color: #000;
  white-space: nowrap;
}
.arksLogoSection {
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arksLogoSection img {
  max-width: 209px;
  max-height: 81px;
  object-fit: contain;
}

.arksCS-stats__number {
  font-weight: 300;
  font-synthesis: none;
  text-align: left;
}

.arksCS-stats__views {
  font-weight: 400;
  text-align: right;
}

.arksCS-stats__sub {
  margin: 0px auto 0;
  max-width: 483px;
  font-family: var(
    --font-f,
    "Neue Haas Grotesk Display Pro",
    Arial,
    sans-serif
  );
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1d1d1d;
}

@media (max-width: 991px) {
  .arksCS-hero {
    height: min(779px, 88vh);
  }

  .pt-5 {
    padding-top: 1rem!important;
}

  .arksCS-hero__title {
    max-width: 100%;
  }
  .arksCS-page .arksCS-infoPanel h5 {
    font-size: 20px;
    margin-bottom: 10px !important;
  }

  .arksCS-hero__content-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .arksCS-hero__subtitle {
    font-size: 18px;
  }

  .arksCS-hero__subtitle-wrap {
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .arksCS-fullVideo.ranveer-main video {
    height: 65vh;
  }
  .arksCS-fullVideo video {
    min-height: 200px;
  }
  .arksCS-centerVideo {
    height: 70vh;
    padding-inline: 40px;
  }
  .arksCS-stats__number,
  .arksCS-stats__views {
    font-size: 45px;
  }
  .arksCS-page .arksCS-infoPanel .listCS li {
    font-size: 16px;
  }

  .arksCS-hero__subtitle-wrap img {
    width: 88px;
    margin-left: 0;
  }

  .arksCS-collab {
    padding: 60px 0px;
  }

  .arksCS-collab__group {
    align-items: center;
    gap: 12px;
    max-width: none;
  }

  .arksCS-collab__text {
    flex: none;
    width: auto;
    text-align: center;
    font-size: 18px;
  }

  .arksCS-collab__logo {
    width: 69px;
    height: auto;
    object-fit: contain;
  }
  .arksLogoSection {
    height: 275px;
  }
  .arksLogoSection img {
    max-width: 126px;
    max-height: 46px;
  }
  .arksCS-stats {
    padding: 20px 22px 250px;
  }
  .pt-250 {
    padding-top: 250px !important;
  }

  .arksCS-stats__headline {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .arksCS-stats__number,
  .arksCS-stats__views {
    text-align: center;
  }

  .arksCS-page .arksCS-infoPanel .listCS {
    border-right: none;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .arksCS-challenge__grid {
    flex-direction: column;
    gap: 16px;
  }

  .arksCS-challenge__label {
    flex: none;
    max-width: none;
  }

  .arksCS-challenge__text {
    font-size: 18px;
  }
}
