/* =========================================================
   REVENUE SHARE
   CASUAL MEETING PAGE
========================================================= */


/* =========================================================
   RESET / BASE
========================================================= */

#rscm-page,
#rscm-page *,
#rscm-page *::before,
#rscm-page *::after {
  box-sizing: border-box;
}

#rscm-page {
  --rscm-bg: #02070d;
  --rscm-bg-deep: #010409;
  --rscm-bg-soft: #06121b;

  --rscm-panel: rgba(4, 20, 31, 0.82);
  --rscm-panel-strong: rgba(5, 26, 39, 0.94);

  --rscm-line: rgba(36, 215, 244, 0.34);
  --rscm-line-soft: rgba(36, 215, 244, 0.13);

  --rscm-cyan: #29dcf4;
  --rscm-cyan-deep: #0799bd;
  --rscm-cyan-dark: #06465a;

  --rscm-pink: #ff315f;
  --rscm-pink-dark: #79152e;

  --rscm-white: #f7fbff;
  --rscm-text: rgba(235, 247, 255, 0.82);
  --rscm-muted: rgba(207, 228, 240, 0.60);

  position: relative;

  width: 100%;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(11, 169, 221, 0.12),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #02070d 0%,
      #03111b 50%,
      #02070d 100%
    );

  color: var(--rscm-white);

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;

  font-size: 16px;
  line-height: 1.8;
}

#rscm-page::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.12;

  background-image:
    linear-gradient(
      rgba(36, 215, 244, 0.075) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(36, 215, 244, 0.075) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 90%
    );

  mask-image:
    linear-gradient(
      to bottom,
      #000,
      transparent 90%
    );
}

#rscm-page img {
  display: block;

  max-width: 100%;
  height: auto;
}

#rscm-page svg {
  display: block;

  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;
}

#rscm-page h1,
#rscm-page h2,
#rscm-page h3,
#rscm-page p,
#rscm-page figure {
  margin-top: 0;
}

#rscm-page a {
  color: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.rscm-container {
  position: relative;
  z-index: 2;

  width: min(
    1180px,
    calc(100% - 96px)
  );

  margin-right: auto;
  margin-left: auto;
}


/* =========================================================
   HERO
========================================================= */

.rscm-hero {
  position: relative;

  min-height: 800px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 13, 0.97) 0%,
      rgba(2, 7, 13, 0.85) 36%,
      rgba(2, 7, 13, 0.25) 67%,
      rgba(2, 7, 13, 0.58) 100%
    ),
    var(--rscm-hero-image)
    center / cover no-repeat;
}

.rscm-hero__overlay {
  position: absolute;
  inset: 0;

  z-index: 0;

  background:
    radial-gradient(
      circle at 71% 48%,
      rgba(26, 206, 252, 0.18),
      transparent 28%
    ),
    linear-gradient(
      to bottom,
      transparent 60%,
      var(--rscm-bg) 100%
    );
}

.rscm-hero__grid {
  position: absolute;
  right: 0;
  bottom: -14%;
  left: 0;

  z-index: 1;

  height: 51%;

  opacity: 0.25;

  background:
    linear-gradient(
      rgba(36, 215, 244, 0.20) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(36, 215, 244, 0.15) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  transform:
    perspective(620px)
    rotateX(66deg);

  transform-origin: bottom center;

  -webkit-mask-image:
    linear-gradient(
      to top,
      #000,
      transparent 90%
    );

  mask-image:
    linear-gradient(
      to top,
      #000,
      transparent 90%
    );
}

.rscm-hero__light {
  position: absolute;
  bottom: 5%;
  left: 60%;

  z-index: 1;

  width: 480px;
  height: 190px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    rgba(17, 190, 237, 0.22);

  filter: blur(75px);
}

.rscm-hero__inner {
  min-height: 800px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  padding-top: 145px;
  padding-bottom: 110px;
}

.rscm-hero__content {
  position: relative;
  z-index: 3;

  width: min(630px, 56%);
}

.rscm-eyebrow {
  margin-bottom: 23px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;

  letter-spacing: 0.21em;
}

.rscm-hero__title {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: clamp(
    43px,
    5vw,
    74px
  );

  font-weight: 900;
  line-height: 1.42;

  letter-spacing: 0.035em;

  text-shadow:
    0 5px 28px
    rgba(0, 0, 0, 0.46);
}

.rscm-hero__lead {
  margin-top: 30px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.rscm-hero__sublead {
  margin-top: 8px;
  margin-bottom: 0;

  color: var(--rscm-muted);

  font-size: 13px;
  line-height: 1.9;
}

.rscm-hero__line {
  width: 330px;
  height: 1px;

  margin-top: 36px;

  background:
    linear-gradient(
      90deg,
      var(--rscm-cyan),
      transparent
    );
}

.rscm-hero__line span {
  display: block;

  width: 48px;
  height: 3px;

  transform: translateY(-1px);

  background: var(--rscm-cyan);

  box-shadow:
    0 0 17px
    rgba(41, 220, 244, 0.76);
}

.rscm-hero__meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}

.rscm-hero__meta-item {
  display: inline-flex;
  align-items: center;

  min-height: 34px;

  padding:
    7px
    14px;

  border:
    1px solid
    rgba(41, 220, 244, 0.38);

  background:
    rgba(3, 22, 32, 0.62);

  color: var(--rscm-cyan);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.rscm-hero__rangers {
  position: relative;
  z-index: 2;

  align-self: flex-end;

  width: min(560px, 46vw);

  margin-right: -3%;
  margin-bottom: -62px;

  filter:
    drop-shadow(
      0 20px 38px
      rgba(0, 0, 0, 0.60)
    );
}

.rscm-hero__rangers img {
  width: 100%;

  max-height: 620px;

  object-fit: contain;
  object-position: bottom right;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.rscm-section {
  position: relative;
  z-index: 1;

  padding-top: 130px;
  padding-bottom: 130px;
}

.rscm-section + .rscm-section {
  border-top:
    1px solid
    rgba(36, 215, 244, 0.075);
}

.rscm-section-heading {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(300px, 0.95fr)
    1.25fr;

  align-items: end;

  gap: 75px;

  margin-bottom: 65px;
  padding-bottom: 30px;

  border-bottom:
    1px solid
    var(--rscm-line);
}

.rscm-section-heading::before {
  content: "";

  position: absolute;
  bottom: -2px;
  left: 0;

  width: 78px;
  height: 3px;

  background: var(--rscm-cyan);

  box-shadow:
    0 0 15px
    rgba(41, 220, 244, 0.46);
}

.rscm-section-heading__number {
  margin-bottom: 12px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.rscm-section-heading__english {
  margin-bottom: 10px;

  color:
    rgba(41, 220, 244, 0.55);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.19em;
}

.rscm-section-heading__title {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: clamp(
    30px,
    3vw,
    45px
  );

  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.035em;
}

.rscm-section-heading__copy p {
  margin-bottom: 0;

  color: var(--rscm-muted);

  font-size: 14px;
  line-height: 2;
}

.rscm-section-heading__copy p + p {
  margin-top: 5px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.rscm-section--intro {
  padding-top: 110px;
}

.rscm-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 19px;
}

.rscm-feature-card {
  position: relative;

  min-height: 315px;

  padding:
    34px
    28px
    30px;

  overflow: hidden;

  border:
    1px solid
    rgba(35, 202, 236, 0.38);

  background:
    linear-gradient(
      150deg,
      rgba(7, 38, 54, 0.78),
      rgba(2, 13, 21, 0.94)
    );

  box-shadow:
    inset 0 0 32px
    rgba(26, 189, 227, 0.04),
    0 18px 42px
    rgba(0, 0, 0, 0.20);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.rscm-feature-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(41, 220, 244, 0.72);

  box-shadow:
    inset 0 0 36px
    rgba(26, 189, 227, 0.08),
    0 24px 52px
    rgba(0, 0, 0, 0.30);
}

.rscm-feature-card::before {
  content: "";

  position: absolute;
  top: -1px;
  left: -1px;

  width: 38px;
  height: 38px;

  border-top:
    3px solid
    var(--rscm-cyan);

  border-left:
    3px solid
    var(--rscm-cyan);
}

.rscm-feature-card::after {
  content: "";

  position: absolute;
  right: -1px;
  bottom: -1px;

  width: 28px;
  height: 28px;

  border-right:
    1px solid
    rgba(41, 220, 244, 0.62);

  border-bottom:
    1px solid
    rgba(41, 220, 244, 0.62);
}

.rscm-feature-card__number {
  display: block;

  margin-bottom: 24px;

  color:
    rgba(41, 220, 244, 0.46);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 700;
}

.rscm-feature-card__icon {
  width: 53px;
  height: 53px;

  margin-bottom: 25px;

  color: var(--rscm-cyan);

  filter:
    drop-shadow(
      0 0 10px
      rgba(41, 220, 244, 0.25)
    );
}

.rscm-feature-card h3 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
}

.rscm-feature-card p {
  margin-top: 15px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 12px;
  line-height: 1.95;
}


/* =========================================================
   INTRO MESSAGE
========================================================= */

.rscm-intro-message {
  position: relative;

  min-height: 330px;

  display: flex;
  align-items: center;

  margin-top: 90px;

  padding:
    55px
    48px;

  overflow: hidden;

  border-top:
    1px solid
    rgba(41, 220, 244, 0.26);

  border-bottom:
    1px solid
    rgba(41, 220, 244, 0.26);

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(15, 166, 214, 0.20),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(3, 16, 25, 0.96),
      rgba(4, 29, 43, 0.74)
    );
}

.rscm-intro-message__copy {
  position: relative;
  z-index: 2;

  width: 60%;
}

.rscm-intro-message__label {
  margin-bottom: 14px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.20em;
}

.rscm-intro-message h3 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: clamp(
    27px,
    3vw,
    42px
  );

  font-weight: 800;
  line-height: 1.55;
}

.rscm-intro-message__copy > p:last-child {
  max-width: 600px;

  margin-top: 22px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 13px;
  line-height: 2;
}

.rscm-intro-message__ranger {
  position: absolute;
  right: 3%;
  bottom: 0;

  width: 32%;
  height: 100%;

  margin: 0;
}

.rscm-intro-message__ranger img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: bottom right;

  filter:
    drop-shadow(
      0 15px 28px
      rgba(0, 0, 0, 0.48)
    );
}


/* =========================================================
   RECOMMENDED
========================================================= */

.rscm-section--recommend {
  background:
    radial-gradient(
      circle at 10% 45%,
      rgba(13, 139, 190, 0.09),
      transparent 28%
    );
}

.rscm-recommend-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}

.rscm-recommend-card {
  min-height: 310px;

  padding:
    35px
    29px;

  border:
    1px solid
    rgba(35, 195, 232, 0.34);

  background:
    linear-gradient(
      180deg,
      rgba(4, 27, 41, 0.82),
      rgba(2, 12, 20, 0.93)
    );

  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.rscm-recommend-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(41, 220, 244, 0.70);
}

.rscm-recommend-card__icon {
  width: 56px;
  height: 56px;

  margin-bottom: 27px;

  color: var(--rscm-cyan);
}

.rscm-recommend-card h3 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.rscm-recommend-card p {
  margin-top: 16px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 12px;
  line-height: 1.95;
}


/* =========================================================
   TOPICS
========================================================= */

.rscm-section--topics {
  background:
    radial-gradient(
      circle at 6% 58%,
      rgba(255, 49, 95, 0.07),
      transparent 24%
    );
}

.rscm-topics-layout {
  display: grid;

  grid-template-columns:
    300px
    minmax(0, 1fr);

  align-items: end;

  gap: 34px;
}

.rscm-topics-layout__ranger {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: flex-end;

  margin: 0;
}

.rscm-topics-layout__ranger::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 58%;

  border:
    1px solid
    rgba(255, 49, 95, 0.18);

  background:
    radial-gradient(
      circle at 50% 62%,
      rgba(255, 49, 95, 0.17),
      transparent 48%
    );
}

.rscm-topics-layout__ranger img {
  position: relative;
  z-index: 2;

  width: 100%;

  max-height: 580px;

  object-fit: contain;
  object-position: bottom center;

  filter:
    drop-shadow(
      0 18px 30px
      rgba(0, 0, 0, 0.55)
    );
}

.rscm-topics-layout__screen {
  position: absolute;
  top: 22%;
  right: 3%;

  z-index: 3;

  width: 125px;
  height: 160px;

  padding: 23px 17px;

  border:
    1px solid
    rgba(41, 220, 244, 0.35);

  background:
    rgba(2, 24, 36, 0.72);

  transform:
    perspective(450px)
    rotateY(-13deg);

  box-shadow:
    0 0 25px
    rgba(41, 220, 244, 0.10);
}

.rscm-topics-layout__screen-line {
  display: block;

  height: 3px;

  margin-bottom: 17px;

  background:
    linear-gradient(
      90deg,
      var(--rscm-cyan),
      transparent
    );
}

.rscm-topics-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.rscm-topic-card {
  position: relative;

  min-height: 255px;

  padding:
    31px
    28px;

  border:
    1px solid
    rgba(35, 195, 232, 0.33);

  background:
    linear-gradient(
      150deg,
      rgba(5, 31, 45, 0.84),
      rgba(2, 13, 21, 0.95)
    );
}

.rscm-topic-card__number {
  position: absolute;
  top: 23px;
  right: 23px;

  color:
    rgba(41, 220, 244, 0.34);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 13px;
  font-weight: 700;
}

.rscm-topic-card__icon {
  width: 46px;
  height: 46px;

  margin-bottom: 22px;

  color: var(--rscm-cyan);
}

.rscm-topic-card h3 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: 17px;
  font-weight: 800;
}

.rscm-topic-card p {
  margin-top: 14px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 12px;
  line-height: 1.95;
}


/* =========================================================
   FLOW
========================================================= */

.rscm-section--flow {
  background:
    radial-gradient(
      circle at 94% 48%,
      rgba(213, 184, 29, 0.07),
      transparent 25%
    );
}

.rscm-flow {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    35px
    minmax(0, 1fr)
    35px
    minmax(0, 1fr)
    35px
    minmax(0, 1fr);

  align-items: stretch;
}

.rscm-flow-card {
  position: relative;

  min-height: 285px;

  padding:
    33px
    27px
    29px;

  border:
    1px solid
    rgba(35, 195, 232, 0.39);

  background:
    linear-gradient(
      180deg,
      rgba(5, 28, 43, 0.87),
      rgba(2, 12, 20, 0.95)
    );

  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.rscm-flow-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(41, 220, 244, 0.75);
}

.rscm-flow-card__number {
  display: block;

  margin-bottom: 22px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 20px;
  font-weight: 800;
}

.rscm-flow-card__icon {
  width: 46px;
  height: 46px;

  margin-bottom: 23px;

  color: var(--rscm-cyan);
}

.rscm-flow-card h3 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: 17px;
  font-weight: 800;
}

.rscm-flow-card p {
  margin-top: 14px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 12px;
  line-height: 1.95;
}

.rscm-flow__arrow {
  position: relative;

  align-self: center;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(41, 220, 244, 0.20),
      var(--rscm-cyan)
    );
}

.rscm-flow__arrow::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 9px;
  height: 9px;

  border-top:
    2px solid
    var(--rscm-cyan);

  border-right:
    2px solid
    var(--rscm-cyan);

  transform:
    translateY(-50%)
    rotate(45deg);
}

.rscm-flow__note {
  margin-top: 25px;
  margin-bottom: 0;

  color: var(--rscm-muted);

  font-size: 11px;
  line-height: 1.8;
}

.rscm-flow__ranger {
  width: 150px;

  margin-top: 30px;
  margin-right: 0;
  margin-bottom: -20px;
  margin-left: auto;
}

.rscm-flow__ranger img {
  max-height: 190px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 13px 23px
      rgba(0, 0, 0, 0.43)
    );
}


/* =========================================================
   PROMISE
========================================================= */

.rscm-section--promise {
  padding-top: 110px;
  padding-bottom: 110px;
}

.rscm-promise {
  display: grid;

  grid-template-columns:
    1.1fr
    1.1fr;

  align-items: center;

  gap: 80px;

  padding:
    68px
    30px;

  border-top:
    1px solid
    rgba(41, 220, 244, 0.30);

  border-bottom:
    1px solid
    rgba(41, 220, 244, 0.30);

  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(14, 155, 205, 0.14),
      transparent 35%
    ),
    linear-gradient(
      90deg,
      rgba(4, 21, 31, 0.92),
      rgba(3, 13, 21, 0.92)
    );
}

.rscm-promise__eyebrow {
  margin-bottom: 16px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.20em;
}

.rscm-promise__heading h2 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: clamp(
    32px,
    3.5vw,
    51px
  );

  font-weight: 900;
  line-height: 1.55;
}

.rscm-promise__list {
  display: grid;

  gap: 24px;
}

.rscm-promise__item {
  display: grid;

  grid-template-columns:
    48px
    minmax(0, 1fr);

  gap: 19px;

  padding-bottom: 23px;

  border-bottom:
    1px solid
    rgba(41, 220, 244, 0.14);
}

.rscm-promise__item:last-child {
  padding-bottom: 0;

  border-bottom: none;
}

.rscm-promise__check {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(41, 220, 244, 0.48);

  border-radius: 50%;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 17px;
  font-weight: 700;
}

.rscm-promise__item h3 {
  margin-bottom: 7px;

  color: var(--rscm-white);

  font-size: 16px;
  font-weight: 800;
}

.rscm-promise__item p {
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 12px;
  line-height: 1.9;
}


/* =========================================================
   FAQ
========================================================= */

.rscm-faq-list {
  overflow: hidden;

  border:
    1px solid
    rgba(41, 220, 244, 0.30);
}

.rscm-faq + .rscm-faq {
  border-top:
    1px solid
    rgba(41, 220, 244, 0.20);
}

.rscm-faq summary {
  min-height: 85px;

  display: grid;

  grid-template-columns:
    46px
    minmax(0, 1fr)
    26px;

  align-items: center;

  gap: 13px;

  padding:
    18px
    29px;

  cursor: pointer;

  list-style: none;

  background:
    rgba(4, 21, 32, 0.74);

  transition:
    background 0.25s ease;
}

.rscm-faq summary:hover {
  background:
    rgba(7, 34, 50, 0.90);
}

.rscm-faq summary::-webkit-details-marker {
  display: none;
}

.rscm-faq__q,
.rscm-faq__a {
  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 18px;
  font-weight: 800;
}

.rscm-faq__question {
  color: var(--rscm-white);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.rscm-faq__toggle {
  position: relative;

  width: 20px;
  height: 20px;
}

.rscm-faq__toggle::before,
.rscm-faq__toggle::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 15px;
  height: 1px;

  background: var(--rscm-muted);

  transform:
    translate(-50%, -50%);

  transition:
    opacity 0.25s ease;
}

.rscm-faq__toggle::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.rscm-faq[open]
.rscm-faq__toggle::after {
  opacity: 0;
}

.rscm-faq__answer {
  display: grid;

  grid-template-columns:
    46px
    minmax(0, 1fr);

  gap: 13px;

  padding:
    27px
    29px
    31px;

  background:
    rgba(2, 11, 18, 0.94);
}

.rscm-faq__answer p {
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 13px;
  line-height: 2;
}


/* =========================================================
   FINAL CTA
========================================================= */

.rscm-final {
  position: relative;
  z-index: 1;

  padding-top: 145px;
  padding-bottom: 155px;

  overflow: hidden;

  border-top:
    1px solid
    rgba(41, 220, 244, 0.12);
}

.rscm-final__glow {
  position: absolute;
  top: 12%;
  left: 50%;

  width: 920px;
  height: 650px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    rgba(12, 121, 168, 0.14);

  filter: blur(125px);
}

.rscm-final__grid {
  position: absolute;
  right: 0;
  bottom: -35%;
  left: 0;

  height: 70%;

  opacity: 0.17;

  background:
    linear-gradient(
      rgba(41, 220, 244, 0.17) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(41, 220, 244, 0.14) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  transform:
    perspective(650px)
    rotateX(65deg);

  transform-origin: bottom center;
}

.rscm-final__intro {
  position: relative;
  z-index: 3;

  max-width: 780px;

  margin-bottom: 64px;
}

.rscm-final__eyebrow {
  margin-bottom: 15px;

  color: var(--rscm-cyan);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.20em;
}

.rscm-final__intro h2 {
  margin-bottom: 0;

  color: var(--rscm-white);

  font-size: clamp(
    38px,
    5vw,
    65px
  );

  font-weight: 900;
  line-height: 1.42;
}

.rscm-final__intro > p:last-child {
  margin-top: 26px;
  margin-bottom: 0;

  color: var(--rscm-text);

  font-size: 15px;
  line-height: 2;
}

.rscm-final__actions {
  position: relative;
  z-index: 4;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.rscm-cta {
  min-height: 195px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding:
    36px
    38px;

  text-decoration: none !important;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rscm-cta:hover {
  transform: translateY(-5px);
}

.rscm-cta--reservation {
  border:
    1px solid
    rgba(41, 220, 244, 0.82);

  background:
    linear-gradient(
      135deg,
      rgba(5, 52, 66, 0.84),
      rgba(2, 16, 25, 0.96)
    );

  box-shadow:
    inset 0 0 32px
    rgba(41, 220, 244, 0.06);
}

.rscm-cta--reservation:hover {
  box-shadow:
    0 20px 48px
    rgba(0, 178, 218, 0.18);
}

.rscm-cta--requirements {
  border:
    1px solid
    rgba(255, 49, 95, 0.82);

  background:
    linear-gradient(
      135deg,
      rgba(72, 10, 35, 0.78),
      rgba(17, 5, 16, 0.96)
    );

  box-shadow:
    inset 0 0 32px
    rgba(255, 49, 95, 0.06);
}

.rscm-cta--requirements:hover {
  box-shadow:
    0 20px 48px
    rgba(255, 49, 95, 0.17);
}

.rscm-cta__label {
  display: flex;
  flex-direction: column;
}

.rscm-cta__label small {
  order: 2;

  margin-top: 8px;

  color: var(--rscm-muted);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.rscm-cta__label strong {
  order: 1;

  color: var(--rscm-white);

  font-size: clamp(
    20px,
    2.2vw,
    28px
  );

  font-weight: 800;
  line-height: 1.45;
}

.rscm-cta--reservation
.rscm-cta__label strong {
  color: var(--rscm-cyan);
}

.rscm-cta--requirements
.rscm-cta__label strong {
  color: var(--rscm-pink);
}

.rscm-cta__label em {
  order: 3;

  margin-top: 18px;

  color: var(--rscm-text);

  font-size: 12px;
  font-style: normal;
}

.rscm-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;
}

.rscm-cta--reservation
.rscm-cta__arrow {
  color: var(--rscm-cyan);
}

.rscm-cta--requirements
.rscm-cta__arrow {
  color: var(--rscm-pink);
}

.rscm-final__ranger {
  position: absolute;
  right: -25px;
  bottom: -32px;

  z-index: 2;

  width: 315px;

  margin: 0;

  opacity: 0.86;
}

.rscm-final__ranger img {
  width: 100%;

  max-height: 410px;

  object-fit: contain;
  object-position: bottom center;

  filter:
    drop-shadow(
      0 18px 30px
      rgba(0, 0, 0, 0.50)
    );
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media screen and (max-width: 1100px) {

  .rscm-container {
    width: min(
      calc(100% - 64px),
      1000px
    );
  }

  .rscm-feature-grid,
  .rscm-recommend-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rscm-topics-layout {
    grid-template-columns:
      240px
      minmax(0, 1fr);
  }

  .rscm-flow {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 22px;
  }

  .rscm-flow__arrow {
    display: none;
  }

  .rscm-final__ranger {
    opacity: 0.32;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

  .rscm-hero__content {
    width: 61%;
  }

  .rscm-hero__rangers {
    width: 48vw;
  }

  .rscm-section-heading {
    grid-template-columns:
      minmax(250px, 0.85fr)
      1fr;

    gap: 42px;
  }

  .rscm-topics-layout {
    grid-template-columns: 1fr;
  }

  .rscm-topics-layout__ranger {
    min-height: 390px;

    justify-content: center;
  }

  .rscm-topics-layout__ranger::before {
    height: 70%;
  }

  .rscm-topics-layout__ranger img {
    width: 310px;
    height: 390px;
  }

  .rscm-topics-layout__screen {
    top: 15%;
    right: 20%;
  }

  .rscm-promise {
    grid-template-columns: 1fr;

    gap: 48px;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

  .rscm-pc {
    display: none;
  }

  .rscm-container {
    width:
      calc(100% - 40px);
  }


  /* HERO */

  .rscm-hero {
    min-height: 800px;

    align-items: flex-start;

    background:
      linear-gradient(
        180deg,
        rgba(2, 7, 13, 0.53) 0%,
        rgba(2, 7, 13, 0.75) 46%,
        rgba(2, 7, 13, 1) 100%
      ),
      var(--rscm-hero-image)
      68% center / cover no-repeat;
  }

  .rscm-hero__inner {
    min-height: 800px;

    display: block;

    padding-top: 145px;
    padding-bottom: 70px;
  }

  .rscm-hero__content {
    width: 100%;
  }

  .rscm-eyebrow {
    margin-bottom: 18px;

    font-size: 10px;
  }

  .rscm-hero__title {
    font-size: 39px;
    line-height: 1.55;
  }

  .rscm-hero__lead {
    margin-top: 23px;

    font-size: 14px;
    line-height: 1.95;
  }

  .rscm-hero__sublead {
    font-size: 12px;
  }

  .rscm-hero__line {
    width: 180px;

    margin-top: 26px;
  }

  .rscm-hero__meta {
    margin-top: 23px;
  }

  .rscm-hero__meta-item {
    padding:
      6px
      11px;

    font-size: 9px;
  }

  .rscm-hero__rangers {
    width: 100%;

    margin-top: 35px;
    margin-right: 0;
    margin-bottom: -28px;
  }

  .rscm-hero__rangers img {
    max-height: 300px;

    margin-left: auto;
  }


  /* SECTION */

  .rscm-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .rscm-section--intro {
    padding-top: 75px;
  }

  .rscm-section-heading {
    display: block;

    margin-bottom: 40px;
    padding-bottom: 23px;
  }

  .rscm-section-heading__title {
    font-size: 30px;
  }

  .rscm-section-heading__copy {
    margin-top: 21px;
  }

  .rscm-section-heading__copy p {
    font-size: 13px;
    line-height: 1.9;
  }


  /* GRIDS */

  .rscm-feature-grid,
  .rscm-recommend-grid,
  .rscm-topics-grid,
  .rscm-final__actions {
    grid-template-columns: 1fr;
  }


  /* FEATURE */

  .rscm-feature-card,
  .rscm-recommend-card {
    min-height: 0;

    padding:
      31px
      25px;
  }

  .rscm-feature-card__icon,
  .rscm-recommend-card__icon {
    width: 47px;
    height: 47px;
  }


  /* INTRO MESSAGE */

  .rscm-intro-message {
    min-height: 500px;

    align-items: flex-start;

    margin-top: 60px;

    padding:
      39px
      25px;
  }

  .rscm-intro-message__copy {
    width: 100%;
  }

  .rscm-intro-message h3 {
    font-size: 27px;
  }

  .rscm-intro-message__ranger {
    right: 0;

    width: 73%;
    height: 46%;
  }


  /* TOPICS */

  .rscm-topics-layout__ranger {
    min-height: 360px;
  }

  .rscm-topics-layout__ranger img {
    width: 270px;
    height: 350px;
  }

  .rscm-topics-layout__screen {
    top: 12%;
    right: 4%;

    width: 100px;
    height: 125px;
  }

  .rscm-topic-card {
    min-height: 0;
  }


  /* FLOW */

  .rscm-flow {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .rscm-flow-card {
    min-height: 0;
  }

  .rscm-flow__ranger {
    width: 110px;

    margin-top: 23px;
  }


  /* PROMISE */

  .rscm-section--promise {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .rscm-promise {
    padding:
      45px
      24px;

    gap: 40px;
  }

  .rscm-promise__heading h2 {
    font-size: 31px;
  }

  .rscm-promise__item {
    grid-template-columns:
      42px
      minmax(0, 1fr);

    gap: 16px;
  }

  .rscm-promise__check {
    width: 38px;
    height: 38px;
  }


  /* FAQ */

  .rscm-faq summary {
    min-height: 76px;

    grid-template-columns:
      34px
      minmax(0, 1fr)
      22px;

    padding:
      16px
      18px;
  }

  .rscm-faq__question {
    font-size: 13px;
    line-height: 1.7;
  }

  .rscm-faq__answer {
    grid-template-columns:
      34px
      minmax(0, 1fr);

    padding:
      22px
      18px
      25px;
  }


  /* FINAL */

  .rscm-final {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .rscm-final__intro {
    margin-bottom: 43px;
  }

  .rscm-final__intro h2 {
    font-size: 39px;
  }

  .rscm-final__intro > p:last-child {
    font-size: 13px;
  }

  .rscm-cta {
    min-height: 160px;

    padding:
      28px
      23px;
  }

  .rscm-cta__arrow {
    width: 44px;
    height: 44px;
  }

  .rscm-final__ranger {
    display: none;
  }

}


/* =========================================================
   SMALL SMARTPHONE
========================================================= */

@media screen and (max-width: 420px) {

  .rscm-container {
    width:
      calc(100% - 30px);
  }

  .rscm-hero__title {
    font-size: 34px;
  }

  .rscm-section-heading__title {
    font-size: 27px;
  }

  .rscm-cta {
    padding:
      25px
      19px;
  }

  .rscm-cta__label strong {
    font-size: 18px;
  }

  .rscm-cta__arrow {
    width: 39px;
    height: 39px;
  }

}


/* =========================================================
   WORDPRESS / THEME OVERRIDES
========================================================= */

body.page-template-page-casual-meeting-php
#rs-recruit-child-page,
body.page-template-page-casual-meeting
#rs-recruit-child-page,
body.page-template-page-casual-meeting-php
.rs-recruit-child-article,
body.page-template-page-casual-meeting
.rs-recruit-child-article,
body.page-template-page-casual-meeting-php
.rs-recruit-child-content,
body.page-template-page-casual-meeting
.rs-recruit-child-content {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

body.page-template-page-casual-meeting-php
#container,
body.page-template-page-casual-meeting
#container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.page-template-page-casual-meeting-php
#header,
body.page-template-page-casual-meeting
#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-casual-meeting-php.header_fix
#header,
body.page-template-page-casual-meeting.header_fix
#header,
body.page-template-page-casual-meeting-php.header_fixed
#header,
body.page-template-page-casual-meeting.header_fixed
#header,
body.page-template-page-casual-meeting-php.is_header_fixed
#header,
body.page-template-page-casual-meeting.is_header_fixed
#header,
body.page-template-page-casual-meeting-php
#header.active,
body.page-template-page-casual-meeting
#header.active,
body.page-template-page-casual-meeting-php
#header.fixed,
body.page-template-page-casual-meeting
#header.fixed {
  background:
    transparent !important;

  border:
    none !important;

  box-shadow:
    none !important;
}

body.admin-bar.page-template-page-casual-meeting-php
#header,
body.admin-bar.page-template-page-casual-meeting
#header {
  top: 32px;
}

@media screen and (max-width: 782px) {

  body.admin-bar.page-template-page-casual-meeting-php
  #header,
  body.admin-bar.page-template-page-casual-meeting
  #header {
    top: 46px;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  #rscm-page *,
  #rscm-page *::before,
  #rscm-page *::after {
    scroll-behavior:
      auto !important;

    transition-duration:
      0.01ms !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;
  }

}

.rscm-topics-layout__ranger::before {
  display: none;
}

.rscm-topics-layout__screen {
  top: 53%;
  right: -2%;
  width: 110px;
  height: 140px;
}

.rscm-topic-card__icon--evaluation svg {
  transform: translateY(-29px);
}

@media screen and (max-width: 767px) {
.rscm-topic-card__icon--evaluation svg {
  transform: translateY(-170px);
}
}