/* =========================================================
   REVENUE SHARE
   REQUIREMENTS PAGE
========================================================= */


/* =========================================================
   RESET / BASE
========================================================= */

#rsreq-page,
#rsreq-page *,
#rsreq-page *::before,
#rsreq-page *::after {
  box-sizing: border-box;
}

#rsreq-page {
  --rsreq-bg: #02070d;
  --rsreq-bg-deep: #01050a;
  --rsreq-bg-soft: #06111a;

  --rsreq-panel: rgba(4, 19, 29, 0.82);
  --rsreq-panel-strong: rgba(5, 24, 37, 0.94);

  --rsreq-line: rgba(39, 213, 247, 0.33);
  --rsreq-line-soft: rgba(39, 213, 247, 0.14);
  --rsreq-line-strong: #21d6f2;

  --rsreq-blue: #24d9f4;
  --rsreq-blue-deep: #0d8db5;
  --rsreq-blue-dark: #063d55;

  --rsreq-pink: #ff315f;
  --rsreq-pink-dark: #81162f;

  --rsreq-white: #f7fbff;
  --rsreq-text: rgba(236, 247, 255, 0.82);
  --rsreq-muted: rgba(210, 229, 241, 0.58);

  position: relative;
  width: 100%;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(0, 172, 226, 0.10),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #02070d 0%,
      #03101a 52%,
      #02070d 100%
    );

  color: var(--rsreq-white);

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

  font-size: 16px;
  line-height: 1.8;
}

#rsreq-page::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 0;

  pointer-events: none;

  opacity: 0.14;

  background-image:
    linear-gradient(
      rgba(37, 207, 238, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(37, 207, 238, 0.08) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 88%
    );

  mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 88%
    );
}

#rsreq-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

#rsreq-page svg {
  display: block;

  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;
}

#rsreq-page h1,
#rsreq-page h2,
#rsreq-page h3,
#rsreq-page p,
#rsreq-page figure {
  margin-top: 0;
}

#rsreq-page a {
  color: inherit;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.rsreq-container {
  position: relative;
  z-index: 2;

  width: min(
    1180px,
    calc(100% - 96px)
  );

  margin-right: auto;
  margin-left: auto;
}


/* =========================================================
   HERO
========================================================= */

.rsreq-hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 13, 0.98) 0%,
      rgba(2, 7, 13, 0.88) 33%,
      rgba(2, 7, 13, 0.28) 68%,
      rgba(2, 7, 13, 0.55) 100%
    ),
    var(--rsreq-hero-image) center / cover no-repeat;
}

.rsreq-hero__overlay {
  position: absolute;
  inset: 0;

  z-index: 0;

  background:
    radial-gradient(
      circle at 69% 53%,
      rgba(20, 200, 255, 0.19),
      transparent 27%
    ),
    linear-gradient(
      to bottom,
      transparent 55%,
      var(--rsreq-bg) 100%
    );
}

.rsreq-hero__grid {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 1;

  height: 46%;

  opacity: 0.24;

  background:
    linear-gradient(
      rgba(27, 206, 239, 0.20) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(27, 206, 239, 0.15) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  transform:
    perspective(560px)
    rotateX(65deg);

  transform-origin: bottom center;

  -webkit-mask-image:
    linear-gradient(
      to top,
      #000,
      transparent 88%
    );

  mask-image:
    linear-gradient(
      to top,
      #000,
      transparent 88%
    );
}

.rsreq-hero__inner {
  position: relative;
  z-index: 2;

  min-height: 760px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 64px;

  padding-top: 150px;
  padding-bottom: 110px;
}

.rsreq-hero__content {
  width: min(650px, 65%);
}

.rsreq-eyebrow {
  margin-bottom: 22px;

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;

  letter-spacing: 0.22em;
}

.rsreq-hero__title {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: clamp(
    54px,
    6.2vw,
    92px
  );

  font-weight: 900;
  line-height: 1.06;

  letter-spacing: 0.03em;

  text-shadow:
    0 4px 28px
    rgba(0, 0, 0, 0.46);
}

.rsreq-hero__lead {
  max-width: 680px;

  margin-top: 34px;
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 17px;
  font-weight: 600;
  line-height: 2.1;
}

.rsreq-hero__line {
  width: 340px;
  height: 1px;

  margin-top: 42px;

  background:
    linear-gradient(
      90deg,
      var(--rsreq-blue),
      transparent
    );
}

.rsreq-hero__line span {
  display: block;

  width: 44px;
  height: 3px;

  transform: translateY(-1px);

  background: var(--rsreq-blue);

  box-shadow:
    0 0 16px
    rgba(36, 217, 244, 0.8);
}

.rsreq-hero__ranger {
  align-self: flex-end;

  width: min(280px, 24vw);

  margin-right: 3%;
  margin-bottom: -58px;

  filter:
    drop-shadow(
      0 18px 32px
      rgba(0, 0, 0, 0.58)
    );
}

.rsreq-hero__ranger img {
  width: 100%;

  max-height: 500px;

  object-fit: contain;
  object-position: bottom center;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.rsreq-section {
  position: relative;
  z-index: 1;

  padding-top: 130px;
  padding-bottom: 130px;
}

.rsreq-section + .rsreq-section {
  border-top:
    1px solid
    rgba(34, 207, 239, 0.08);
}

.rsreq-section-heading {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(280px, 0.9fr)
    1.25fr;

  align-items: end;

  gap: 80px;

  margin-bottom: 62px;
  padding-bottom: 28px;

  border-bottom:
    1px solid
    var(--rsreq-line);
}

.rsreq-section-heading::before {
  content: "";

  position: absolute;
  bottom: -2px;
  left: 0;

  width: 72px;
  height: 3px;

  background: var(--rsreq-blue);

  box-shadow:
    0 0 14px
    rgba(36, 217, 244, 0.46);
}

.rsreq-section-heading__number {
  margin-bottom: 12px;

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 15px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.14em;
}

.rsreq-section-heading__title {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: clamp(
    30px,
    3vw,
    46px
  );

  font-weight: 800;
  line-height: 1.25;

  letter-spacing: 0.04em;
}

.rsreq-section-heading__description {
  margin-bottom: 0;

  color: var(--rsreq-muted);

  font-size: 15px;
  line-height: 2;
}


/* =========================================================
   JOB CARDS
========================================================= */

.rsreq-section--jobs {
  padding-top: 105px;
}

.rsreq-job-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.rsreq-job-card {
  position: relative;

  min-height: 320px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding:
    38px
    34px
    34px;

  overflow: hidden;

  border:
    1px solid
    var(--rsreq-line);

  background:
    linear-gradient(
      145deg,
      rgba(13, 49, 67, 0.40),
      rgba(2, 12, 20, 0.86)
    );

  box-shadow:
    inset 0 0 30px
    rgba(18, 183, 225, 0.04),
    0 18px 42px
    rgba(0, 0, 0, 0.22);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.rsreq-job-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(36, 217, 244, 0.72);

  box-shadow:
    inset 0 0 42px
    rgba(18, 183, 225, 0.08),
    0 25px 55px
    rgba(0, 0, 0, 0.35);
}

.rsreq-job-card::before {
  content: "";

  position: absolute;
  top: -1px;
  left: -1px;

  width: 38px;
  height: 38px;

  border-top:
    3px solid
    var(--rsreq-blue);

  border-left:
    3px solid
    var(--rsreq-blue);
}

.rsreq-job-card::after {
  content: "";

  position: absolute;
  right: -1px;
  bottom: -1px;

  width: 28px;
  height: 28px;

  border-right:
    1px solid
    rgba(34, 213, 242, 0.65);

  border-bottom:
    1px solid
    rgba(34, 213, 242, 0.65);
}

.rsreq-job-card__icon {
  width: 54px;
  height: 54px;

  margin-bottom: 28px;

  color: var(--rsreq-blue);

  filter:
    drop-shadow(
      0 0 10px
      rgba(35, 216, 244, 0.28)
    );
}

.rsreq-job-card h3 {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.rsreq-job-card p {
  margin-top: 16px;
  margin-bottom: 28px;

  color: var(--rsreq-text);

  font-size: 13px;
  line-height: 1.9;
}

.rsreq-tag {
  display: inline-flex;

  margin-top: auto;

  padding:
    7px
    11px;

  border:
    1px solid
    rgba(35, 216, 244, 0.52);

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.14em;
}


/* =========================================================
   JOB RANGER MESSAGE
========================================================= */

.rsreq-ranger-message {
  position: relative;

  min-height: 250px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  margin-top: 78px;

  padding:
    44px
    36px;

  overflow: hidden;

  border:
    1px solid
    rgba(35, 216, 244, 0.20);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(4, 26, 39, 0.72)
    );
}

.rsreq-ranger-message::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 50%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(36, 217, 244, 0.22),
      transparent
    );
}

.rsreq-ranger-message__text {
  position: relative;
  z-index: 2;

  width: 48%;

  margin-right: 230px;
}

.rsreq-ranger-message__label {
  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.18em;
}

.rsreq-ranger-message p {
  margin-top: 14px;
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.rsreq-ranger-message img {
  position: absolute;
  right: 24px;
  bottom: 0;

  width: 220px;

  max-height: 255px;

  object-fit: contain;
  object-position: bottom center;

  filter:
    drop-shadow(
      0 14px 25px
      rgba(0, 0, 0, 0.42)
    );
}


/* =========================================================
   CONDITIONS TABLE
========================================================= */

.rsreq-section--conditions {
  background:
    radial-gradient(
      circle at 92% 50%,
      rgba(14, 164, 213, 0.08),
      transparent 27%
    );
}

.rsreq-spec-table {
  position: relative;

  overflow: hidden;

  border:
    1px solid
    var(--rsreq-line);

  background:
    rgba(3, 16, 25, 0.66);
}

.rsreq-spec-row {
  display: grid;

  grid-template-columns:
    260px
    minmax(0, 1fr);
}

.rsreq-spec-row + .rsreq-spec-row {
  border-top:
    1px solid
    rgba(42, 197, 228, 0.18);
}

.rsreq-spec-row__label,
.rsreq-spec-row__value {
  min-height: 106px;

  display: flex;
  align-items: center;
}

.rsreq-spec-row__label {
  gap: 18px;

  padding:
    24px
    30px;

  border-right:
    1px solid
    rgba(42, 197, 228, 0.18);

  color: var(--rsreq-white);

  font-size: 14px;
  font-weight: 700;
}

.rsreq-spec-row__value {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding:
    23px
    36px;

  color: var(--rsreq-white);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.rsreq-spec-row__value strong {
  color: var(--rsreq-white);

  font-size: 15px;
  font-weight: 700;
}

.rsreq-spec-row__value small {
  display: block;

  margin-top: 5px;

  color: var(--rsreq-muted);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.rsreq-mini-icon {
  flex: 0 0 auto;

  width: 30px;
  height: 30px;

  color: var(--rsreq-blue);
}


/* =========================================================
   FLOATING RANGER
========================================================= */

.rsreq-floating-ranger {
  position: absolute;
  right: -44px;
  bottom: -76px;

  width: 190px;
  height: 190px;

  display: grid;
  place-items: center;
}

.rsreq-floating-ranger__ring {
  position: absolute;
  inset: 0;

  border:
    1px solid
    rgba(36, 217, 244, 0.36);

  border-radius: 50%;

  box-shadow:
    0 0 24px
    rgba(22, 193, 230, 0.10),
    inset 0 0 34px
    rgba(22, 193, 230, 0.08);
}

.rsreq-floating-ranger__ring::before,
.rsreq-floating-ranger__ring::after {
  content: "";

  position: absolute;
  inset: 15px;

  border:
    1px dashed
    rgba(36, 217, 244, 0.26);

  border-radius: inherit;
}

.rsreq-floating-ranger__ring::after {
  inset: 34px;

  border-style: solid;
}

.rsreq-floating-ranger img {
  position: relative;
  z-index: 2;

  width: 120px;

  max-height: 160px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 12px 20px
      rgba(0, 0, 0, 0.42)
    );
}


/* =========================================================
   SUPPORT
========================================================= */

.rsreq-support-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.rsreq-support-card {
  position: relative;

  min-height: 320px;

  padding:
    34px
    28px
    30px;

  border:
    1px solid
    rgba(29, 189, 229, 0.35);

  background:
    linear-gradient(
      180deg,
      rgba(5, 29, 43, 0.86),
      rgba(2, 12, 20, 0.92)
    );

  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.rsreq-support-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(36, 217, 244, 0.68);
}

.rsreq-support-card::before {
  content: "";

  position: absolute;
  top: -1px;
  left: -1px;

  width: 38px;
  height: 38px;

  border-top:
    3px solid
    var(--rsreq-blue);

  border-left:
    3px solid
    var(--rsreq-blue);
}

.rsreq-support-card::after {
  content: "";

  position: absolute;
  right: -1px;
  bottom: -1px;

  width: 28px;
  height: 28px;

  border-right:
    1px solid
    rgba(34, 213, 242, 0.65);

  border-bottom:
    1px solid
    rgba(34, 213, 242, 0.65);
}

.rsreq-support-card__number {
  display: block;

  margin-bottom: 28px;

  color:
    rgba(36, 217, 244, 0.50);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;
  font-weight: 700;
}

.rsreq-support-card__icon {
  width: 48px;
  height: 48px;

  margin-bottom: 22px;

  color: var(--rsreq-blue);
}

.rsreq-support-card h3 {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.rsreq-support-card p {
  margin-top: 15px;
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 12px;
  line-height: 1.9;
}


/* =========================================================
   SUPPORT MESSAGE BAND
========================================================= */

.rsreq-message-band {
  position: relative;

  min-height: 340px;

  display: flex;
  align-items: center;

  margin-top: 90px;

  padding:
    58px
    46px;

  overflow: hidden;

  border-top:
    1px solid
    rgba(36, 217, 244, 0.30);

  border-bottom:
    1px solid
    rgba(36, 217, 244, 0.30);

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(14, 153, 211, 0.20),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(3, 15, 24, 0.95),
      rgba(4, 28, 42, 0.72)
    );
}

.rsreq-message-band__copy {
  position: relative;
  z-index: 2;

  width: 58%;
}

.rsreq-message-band__sub {
  margin-bottom: 16px;

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.20em;
}

.rsreq-message-band h3 {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: clamp(
    27px,
    3vw,
    43px
  );

  font-weight: 800;
  line-height: 1.55;
}

.rsreq-message-band__description {
  max-width: 580px;

  margin-top: 22px;
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 13px;
  line-height: 2;
}

.rsreq-message-band__visual {
  position: absolute;
  right: 1%;
  bottom: 0;

  width: 42%;
  height: 100%;

  margin: 0;
}

.rsreq-message-band__visual img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: bottom right;

  filter:
    drop-shadow(
      0 16px 26px
      rgba(0, 0, 0, 0.44)
    );
}


/* =========================================================
   PERSON
========================================================= */

.rsreq-person-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.rsreq-person-card {
  min-height: 185px;

  display: grid;

  grid-template-columns:
    70px
    minmax(0, 1fr);

  align-items: center;

  gap: 24px;

  padding: 32px;

  border:
    1px solid
    rgba(255, 49, 95, 0.58);

  background:
    linear-gradient(
      145deg,
      rgba(61, 8, 28, 0.28),
      rgba(5, 12, 20, 0.92)
    );

  box-shadow:
    inset 0 0 34px
    rgba(255, 49, 95, 0.04);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.rsreq-person-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(255, 49, 95, 0.90);
}

.rsreq-person-card__icon {
  width: 62px;
  height: 62px;

  color: var(--rsreq-pink);
}

.rsreq-person-card h3 {
  margin-bottom: 10px;

  color: var(--rsreq-white);

  font-size: 19px;
  font-weight: 800;
}

.rsreq-person-card p {
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 13px;
  line-height: 1.85;
}


/* =========================================================
   FLOW
========================================================= */

.rsreq-section--flow {
  background:
    radial-gradient(
      circle at 5% 35%,
      rgba(15, 133, 193, 0.10),
      transparent 26%
    );
}

.rsreq-flow {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    34px
    minmax(0, 1fr)
    34px
    minmax(0, 1fr)
    34px
    minmax(0, 1fr);

  align-items: stretch;
}

.rsreq-flow-card {
  position: relative;

  min-height: 270px;

  padding:
    32px
    26px
    28px;

  border:
    1px solid
    rgba(38, 184, 233, 0.42);

  background:
    linear-gradient(
      180deg,
      rgba(4, 24, 38, 0.88),
      rgba(2, 12, 20, 0.94)
    );

  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.rsreq-flow-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(36, 217, 244, 0.74);
}

.rsreq-flow-card__number {
  display: block;

  margin-bottom: 22px;

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 20px;
  font-weight: 800;
}

.rsreq-flow-card__icon {
  width: 46px;
  height: 46px;

  margin-bottom: 23px;

  color: var(--rsreq-blue);
}

.rsreq-flow-card h3 {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: 17px;
  font-weight: 800;
}

.rsreq-flow-card p {
  margin-top: 14px;
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 12px;
  line-height: 1.9;
}

.rsreq-flow__arrow {
  position: relative;

  align-self: center;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(36, 217, 244, 0.20),
      var(--rsreq-blue)
    );
}

.rsreq-flow__arrow::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 9px;
  height: 9px;

  border-top:
    2px solid
    var(--rsreq-blue);

  border-right:
    2px solid
    var(--rsreq-blue);

  transform:
    translateY(-50%)
    rotate(45deg);
}

.rsreq-flow-ranger {
  width: 150px;

  margin-top: 46px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: auto;
}

.rsreq-flow-ranger img {
  max-height: 170px;

  margin-left: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 12px 20px
      rgba(0, 0, 0, 0.42)
    );
}


/* =========================================================
   FAQ
========================================================= */

.rsreq-faq-list {
  overflow: hidden;

  border:
    1px solid
    rgba(34, 205, 239, 0.30);
}

.rsreq-faq + .rsreq-faq {
  border-top:
    1px solid
    rgba(34, 205, 239, 0.20);
}

.rsreq-faq summary {
  min-height: 84px;

  display: grid;

  grid-template-columns:
    46px
    minmax(0, 1fr)
    26px;

  align-items: center;

  gap: 12px;

  padding:
    18px
    28px;

  cursor: pointer;

  list-style: none;

  background:
    rgba(4, 20, 31, 0.72);

  transition:
    background 0.25s ease;
}

.rsreq-faq summary:hover {
  background:
    rgba(7, 32, 48, 0.88);
}

.rsreq-faq summary::-webkit-details-marker {
  display: none;
}

.rsreq-faq__q,
.rsreq-faq__a {
  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 18px;
  font-weight: 800;
}

.rsreq-faq__question {
  color: var(--rsreq-white);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.rsreq-faq__toggle {
  position: relative;

  width: 20px;
  height: 20px;
}

.rsreq-faq__toggle::before,
.rsreq-faq__toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 15px;
  height: 1px;

  background: var(--rsreq-muted);

  transform:
    translate(-50%, -50%);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.rsreq-faq__toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.rsreq-faq[open]
.rsreq-faq__toggle::after {
  opacity: 0;
}

.rsreq-faq__answer {
  display: grid;

  grid-template-columns:
    46px
    minmax(0, 1fr);

  gap: 12px;

  padding:
    26px
    28px
    30px;

  background:
    rgba(2, 11, 18, 0.92);
}

.rsreq-faq__answer p {
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 13px;
  line-height: 2;
}


/* =========================================================
   FINAL CTA
========================================================= */

.rsreq-final {
  position: relative;
  z-index: 1;

  padding-top: 140px;
  padding-bottom: 150px;

  overflow: hidden;

  border-top:
    1px solid
    rgba(36, 217, 244, 0.13);
}

.rsreq-final__glow {
  position: absolute;
  top: 20%;
  left: 50%;

  width: 900px;
  height: 600px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background:
    rgba(14, 115, 163, 0.12);

  filter: blur(120px);
}

.rsreq-final__intro {
  position: relative;
  z-index: 2;

  max-width: 650px;

  margin-bottom: 62px;
}

.rsreq-final__eyebrow {
  margin-bottom: 15px;

  color: var(--rsreq-blue);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.20em;
}

.rsreq-final__intro h2 {
  margin-bottom: 0;

  color: var(--rsreq-white);

  font-size: clamp(
    38px,
    5vw,
    66px
  );

  font-weight: 900;
  line-height: 1.32;
}

.rsreq-final__intro > p:last-child {
  margin-top: 26px;
  margin-bottom: 0;

  color: var(--rsreq-text);

  font-size: 15px;
  line-height: 2;
}

.rsreq-final__actions {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.rsreq-cta {
  min-height: 190px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding:
    35px
    38px;

  text-decoration: none !important;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.rsreq-cta:hover {
  transform: translateY(-4px);
}

.rsreq-cta--casual {
  border:
    1px solid
    rgba(36, 217, 244, 0.78);

  background:
    linear-gradient(
      135deg,
      rgba(6, 48, 61, 0.82),
      rgba(2, 16, 25, 0.94)
    );

  box-shadow:
    inset 0 0 30px
    rgba(36, 217, 244, 0.06);
}

.rsreq-cta--casual:hover {
  box-shadow:
    0 18px 45px
    rgba(0, 177, 214, 0.17);
}

.rsreq-cta--entry {
  border:
    1px solid
    rgba(255, 49, 95, 0.83);

  background:
    linear-gradient(
      135deg,
      rgba(72, 10, 34, 0.78),
      rgba(17, 5, 16, 0.94)
    );

  box-shadow:
    inset 0 0 30px
    rgba(255, 49, 95, 0.06);
}

.rsreq-cta--entry:hover {
  box-shadow:
    0 18px 45px
    rgba(255, 49, 95, 0.16);
}

.rsreq-cta__label {
  display: flex;
  flex-direction: column;
}

.rsreq-cta__label small {
  order: 2;

  margin-top: 8px;

  color: var(--rsreq-muted);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.rsreq-cta__label strong {
  order: 1;

  color: var(--rsreq-white);

  font-size: clamp(
    20px,
    2.3vw,
    29px
  );

  font-weight: 800;
  line-height: 1.4;
}

.rsreq-cta--casual
.rsreq-cta__label strong {
  color: var(--rsreq-blue);
}

.rsreq-cta--entry
.rsreq-cta__label strong {
  color: var(--rsreq-pink);
}

.rsreq-cta__label em {
  order: 3;

  margin-top: 18px;

  color: var(--rsreq-text);

  font-size: 12px;
  font-style: normal;
}

.rsreq-cta__arrow {
  flex: 0 0 auto;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border:
    1px solid
    currentColor;

  border-radius: 50%;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 20px;
}

.rsreq-cta--casual
.rsreq-cta__arrow {
  color: var(--rsreq-blue);
}

.rsreq-cta--entry
.rsreq-cta__arrow {
  color: var(--rsreq-pink);
}

.rsreq-final__ranger {
  position: absolute;
  right: -20px;
  bottom: -30px;

  z-index: 1;

  width: 310px;

  margin: 0;

  opacity: 0.82;
}

.rsreq-final__ranger img {
  width: 100%;

  max-height: 390px;

  object-fit: contain;
  object-position: bottom center;

  filter:
    drop-shadow(
      0 18px 28px
      rgba(0, 0, 0, 0.48)
    );
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media screen and (max-width: 1100px) {

  .rsreq-container {
    width: min(
      calc(100% - 64px),
      1000px
    );
  }

  .rsreq-job-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rsreq-support-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rsreq-flow {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

  .rsreq-flow__arrow {
    display: none;
  }

  .rsreq-final__ranger {
    opacity: 0.34;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

  .rsreq-hero__inner {
    min-height: 700px;
  }

  .rsreq-hero__content {
    width: 70%;
  }

  .rsreq-section-heading {
    grid-template-columns:
      minmax(230px, 0.8fr)
      1fr;

    gap: 42px;
  }

  .rsreq-person-grid {
    grid-template-columns: 1fr;
  }

  .rsreq-person-card {
    min-height: 150px;
  }

  .rsreq-message-band__copy {
    width: 62%;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

  .rsreq-pc {
    display: none;
  }

  .rsreq-container {
    width:
      calc(100% - 40px);
  }


  /* HERO */

  .rsreq-hero {
    min-height: 720px;

    align-items: flex-start;

    background:
      linear-gradient(
        180deg,
        rgba(2, 7, 13, 0.56) 0%,
        rgba(2, 7, 13, 0.76) 42%,
        rgba(2, 7, 13, 1) 100%
      ),
      var(--rsreq-hero-image)
      68% center / cover no-repeat;
  }

  .rsreq-hero__inner {
    min-height: 720px;

    display: block;

    padding-top: 150px;
    padding-bottom: 85px;
  }

  .rsreq-hero__content {
    width: 100%;
  }

  .rsreq-eyebrow {
    margin-bottom: 18px;

    font-size: 10px;
  }

  .rsreq-hero__title {
    font-size: 50px;
  }

  .rsreq-hero__lead {
    margin-top: 25px;

    font-size: 14px;
    line-height: 1.95;
  }

  .rsreq-hero__line {
    width: 180px;

    margin-top: 28px;
  }

  .rsreq-hero__ranger {
    width: 150px;

    margin-top: 38px;
    margin-right: 0;
    margin-bottom: -30px;
    margin-left: auto;
  }


  /* COMMON SECTION */

  .rsreq-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .rsreq-section--jobs {
    padding-top: 75px;
  }

  .rsreq-section-heading {
    display: block;

    margin-bottom: 40px;
    padding-bottom: 22px;
  }

  .rsreq-section-heading__title {
    font-size: 31px;
  }

  .rsreq-section-heading__description {
    margin-top: 20px;

    font-size: 13px;
    line-height: 1.9;
  }


  /* GRID */

  .rsreq-job-grid,
  .rsreq-support-grid,
  .rsreq-person-grid,
  .rsreq-final__actions {
    grid-template-columns: 1fr;
  }


  /* JOB */

  .rsreq-job-card {
    min-height: 0;

    padding:
      31px
      26px;
  }

  .rsreq-job-card__icon {
    width: 46px;
    height: 46px;

    margin-bottom: 21px;
  }

  .rsreq-job-card p {
    margin-bottom: 24px;
  }


  /* RANGER MESSAGE */

  .rsreq-ranger-message {
    min-height: 330px;

    align-items: flex-start;

    margin-top: 55px;

    padding:
      32px
      26px;
  }

  .rsreq-ranger-message__text {
    width: 100%;

    margin-right: 0;
  }

  .rsreq-ranger-message p {
    font-size: 17px;
  }

  .rsreq-ranger-message img {
    right: 16px;

    width: 155px;

    max-height: 180px;
  }


  /* CONDITIONS */

  .rsreq-spec-row {
    grid-template-columns: 1fr;
  }

  .rsreq-spec-row__label {
    min-height: auto;

    padding:
      20px
      22px
      12px;

    border-right: none;
  }

  .rsreq-spec-row__value {
    min-height: auto;

    padding:
      5px
      22px
      23px
      70px;

    font-size: 14px;
  }

  .rsreq-spec-row__value strong {
    font-size: 14px;
  }

  .rsreq-floating-ranger {
    display: none;
  }


  /* SUPPORT */

  .rsreq-support-card {
    min-height: 0;
  }

  .rsreq-message-band {
    min-height: 500px;

    align-items: flex-start;

    margin-top: 60px;

    padding:
      40px
      25px;
  }

  .rsreq-message-band__copy {
    width: 100%;
  }

  .rsreq-message-band h3 {
    font-size: 27px;
  }

  .rsreq-message-band__description {
    width: 100%;
  }

  .rsreq-message-band__visual {
    right: 0;

    width: 88%;
    height: 48%;
  }


  /* PERSON */

  .rsreq-person-card {
    min-height: 0;

    grid-template-columns:
      55px
      minmax(0, 1fr);

    gap: 18px;

    padding:
      27px
      23px;
  }

  .rsreq-person-card__icon {
    width: 50px;
    height: 50px;
  }


  /* FLOW */

  .rsreq-flow {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .rsreq-flow-card {
    min-height: 0;
  }

  .rsreq-flow-ranger {
    width: 105px;

    margin-top: 25px;
  }


  /* FAQ */

  .rsreq-faq summary {
    min-height: 76px;

    grid-template-columns:
      34px
      minmax(0, 1fr)
      22px;

    padding:
      16px
      18px;
  }

  .rsreq-faq__question {
    font-size: 13px;
    line-height: 1.7;
  }

  .rsreq-faq__answer {
    grid-template-columns:
      34px
      minmax(0, 1fr);

    padding:
      22px
      18px
      25px;
  }


  /* FINAL */

  .rsreq-final {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .rsreq-final__intro {
    margin-bottom: 42px;
  }

  .rsreq-final__intro h2 {
    font-size: 40px;
  }

  .rsreq-cta {
    min-height: 160px;

    padding:
      28px
      24px;
  }

  .rsreq-cta__arrow {
    width: 45px;
    height: 45px;
  }

  .rsreq-final__ranger {
    display: none;
  }

}


/* =========================================================
   SMALL SMARTPHONE
========================================================= */

@media screen and (max-width: 420px) {

  .rsreq-container {
    width:
      calc(100% - 30px);
  }

  .rsreq-hero__title {
    font-size: 44px;
  }

  .rsreq-section-heading__title {
    font-size: 28px;
  }

  .rsreq-cta {
    padding:
      25px
      20px;
  }

  .rsreq-cta__label strong {
    font-size: 19px;
  }

  .rsreq-cta__arrow {
    width: 40px;
    height: 40px;
  }

}


/* =========================================================
   WORDPRESS / THEME OVERRIDES
========================================================= */

body.page-template-page-requirements-php
#rs-recruit-child-page,
body.page-template-page-requirements
#rs-recruit-child-page,
body.page-template-page-requirements-php
.rs-recruit-child-article,
body.page-template-page-requirements
.rs-recruit-child-article,
body.page-template-page-requirements-php
.rs-recruit-child-content,
body.page-template-page-requirements
.rs-recruit-child-content {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

body.page-template-page-requirements-php
#container,
body.page-template-page-requirements
#container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.page-template-page-requirements-php
#header,
body.page-template-page-requirements
#header {
  position: fixed !important;

  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  background:
    transparent !important;

  border: none !important;

  box-shadow:
    none !important;

  -webkit-backdrop-filter:
    none !important;

  backdrop-filter:
    none !important;

  z-index: 9999;
}

body.page-template-page-requirements-php.header_fix
#header,
body.page-template-page-requirements.header_fix
#header,
body.page-template-page-requirements-php.header_fixed
#header,
body.page-template-page-requirements.header_fixed
#header,
body.page-template-page-requirements-php.is_header_fixed
#header,
body.page-template-page-requirements.is_header_fixed
#header,
body.page-template-page-requirements-php
#header.active,
body.page-template-page-requirements
#header.active,
body.page-template-page-requirements-php
#header.fixed,
body.page-template-page-requirements
#header.fixed {
  background:
    transparent !important;

  border: none !important;

  box-shadow:
    none !important;
}

body.admin-bar.page-template-page-requirements-php
#header,
body.admin-bar.page-template-page-requirements
#header {
  top: 32px;
}

@media screen and (max-width: 782px) {

  body.admin-bar.page-template-page-requirements-php
  #header,
  body.admin-bar.page-template-page-requirements
  #header {
    top: 46px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  #rsreq-page *,
  #rsreq-page *::before,
  #rsreq-page *::after {
    scroll-behavior: auto !important;

    transition-duration:
      0.01ms !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;
  }

}