/* ============================================================
   ABOUT PAGE
============================================================ */

#rsabout-page {
  --rsabout-bg: #020811;
  --rsabout-bg-deep: #01050a;
  --rsabout-panel: rgba(2, 24, 37, 0.9);
  --rsabout-panel-2: rgba(3, 35, 50, 0.74);
  --rsabout-cyan: #25e7ff;
  --rsabout-cyan-line: rgba(37, 231, 255, 0.46);
  --rsabout-cyan-soft: rgba(37, 231, 255, 0.14);
  --rsabout-pink: #ff386f;
  --rsabout-pink-line: rgba(255, 56, 111, 0.56);
  --rsabout-text: #f4fbff;
  --rsabout-soft: #b1c7d2;
  --rsabout-dim: #718b99;
  --rsabout-container: 1180px;

  position: relative;
  overflow: hidden;
  color: var(--rsabout-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 134, 200, 0.12), transparent 30%),
    linear-gradient(180deg, #020a12 0%, #01060c 100%);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

#rsabout-page,
#rsabout-page * {
  box-sizing: border-box;
}

#rsabout-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

#rsabout-page a {
  color: inherit;
  text-decoration: none;
}

.rsabout-container {
  width: min(calc(100% - 48px), var(--rsabout-container));
  margin-inline: auto;
}

.rsabout-section {
  position: relative;
  padding: 76px 0;
}

.rsabout-kicker,
.rsabout-mini-kicker {
  margin: 0;
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.rsabout-kicker {
  font-size: 13px;
}

.rsabout-mini-kicker {
  font-size: 11px;
}

.rsabout-section-heading {
  max-width: 820px;
  margin: 0 0 38px;
}

.rsabout-section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.rsabout-section-heading > p:last-child:not(.rsabout-kicker) {
  margin: 14px 0 0;
  color: var(--rsabout-soft);
  font-size: 15px;
  line-height: 1.9;
}


/* ============================================================
   HEADER
============================================================ */

body.page-template-page-about #header,
body.page-template-page-about .l-header,
body.page-template-page-about .header {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.admin-bar.page-template-page-about #header,
body.admin-bar.page-template-page-about .l-header,
body.admin-bar.page-template-page-about .header {
  top: 32px;
}

body.page-template-page-about #header_inner,
body.page-template-page-about .header_inner,
body.page-template-page-about .l-header__inner,
body.page-template-page-about #header_top,
body.page-template-page-about #header::before,
body.page-template-page-about #header::after {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}


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

.rsabout-hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 56px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(1, 7, 14, 0.99) 0%,
      rgba(1, 9, 18, 0.9) 43%,
      rgba(1, 10, 18, 0.43) 70%,
      rgba(1, 7, 14, 0.28) 100%
    ),
    var(--rsabout-hero-bg) center / cover no-repeat;
}

.rsabout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 68%, var(--rsabout-bg) 100%),
    radial-gradient(circle at 72% 42%, rgba(0, 199, 255, 0.16), transparent 38%);
}

.rsabout-hero::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 2%;
  width: 50%;
  height: 28%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(0, 196, 255, 0.2), transparent 68%);
  filter: blur(18px);
}

.rsabout-hero__grid,
.rsabout-hero__scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.rsabout-hero__grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(37, 231, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 231, 255, 0.13) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.rsabout-hero__scan {
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.04) 4px
    );
}

.rsabout-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: 24px;
}

.rsabout-hero__copy {
  position: relative;
  z-index: 2;
  padding: 42px 0 46px 34px;
}

.rsabout-hero__copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 270px;
  background: linear-gradient(180deg, transparent, var(--rsabout-cyan), transparent);
  box-shadow: 0 0 12px rgba(37, 231, 255, 0.5);
}

.rsabout-hero__copy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 1px;
  background: linear-gradient(90deg, var(--rsabout-cyan), transparent);
}

.rsabout-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.rsabout-hero__lead {
  margin: 28px 0 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 750;
  line-height: 1.65;
}

.rsabout-hero__description {
  max-width: 660px;
  margin: 20px 0 0;
  color: #c9dce5;
  font-size: 15px;
  line-height: 2;
}

.rsabout-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.rsabout-hero__visual {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0 -90px -38px 0;
}

.rsabout-hero__visual img {
  width: 100%;
  filter:
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 12px rgba(0, 190, 255, 0.18));
}


/* ============================================================
   BUTTON
============================================================ */

.rsabout-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 240px;
  min-height: 62px;
  padding: 0 20px 0 24px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.rsabout-button:hover {
  transform: translateY(-2px);
}

.rsabout-button--cyan {
  color: #eaffff;
  border-color: var(--rsabout-cyan);
  background: linear-gradient(90deg, rgba(0, 134, 169, 0.26), rgba(1, 25, 39, 0.82));
  box-shadow:
    inset 0 0 18px rgba(37, 231, 255, 0.1),
    0 0 12px rgba(37, 231, 255, 0.38);
}

.rsabout-button--pink {
  color: #fff;
  border-color: var(--rsabout-pink);
  background: linear-gradient(90deg, rgba(129, 7, 47, 0.62), rgba(48, 3, 22, 0.88));
  box-shadow:
    inset 0 0 18px rgba(255, 56, 111, 0.13),
    0 0 12px rgba(255, 56, 111, 0.38);
}


/* ============================================================
   PANELS
============================================================ */

.rsabout-why__panel,
.rsabout-message__panel,
.rsabout-name__panel,
.rsabout-company__table,
.rsabout-access,
.rsabout-next__panel {
  position: relative;
  border: 1px solid var(--rsabout-cyan-line);
  background:
    linear-gradient(145deg, rgba(2, 30, 44, 0.94), rgba(1, 13, 23, 0.94));
  box-shadow:
    inset 0 0 44px rgba(0, 157, 210, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.24);
}

.rsabout-why__panel::before,
.rsabout-message__panel::before,
.rsabout-name__panel::before,
.rsabout-next__panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(37, 231, 255, 0.08);
}


/* ============================================================
   WHY
============================================================ */

.rsabout-why {
  padding-top: 46px;
}

.rsabout-why__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  padding: 40px;
}

.rsabout-why__issues {
  display: grid;
  gap: 14px;
}

.rsabout-issue-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(37, 231, 255, 0.22);
  background: rgba(2, 27, 40, 0.7);
}

.rsabout-card-number {
  position: absolute;
  right: 14px;
  top: 12px;
  color: rgba(37, 231, 255, 0.45);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.rsabout-card-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--rsabout-cyan);
}

.rsabout-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rsabout-issue-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.rsabout-issue-card p {
  margin: 0;
  color: var(--rsabout-soft);
  font-size: 13px;
  line-height: 1.85;
}

.rsabout-why__answer {
  padding: 12px 4px 8px 10px;
}

.rsabout-why__answer h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.55;
}

.rsabout-why__answer > p:not(.rsabout-mini-kicker) {
  margin: 18px 0 0;
  color: var(--rsabout-soft);
  font-size: 14px;
  line-height: 2;
}

.rsabout-cycle-mini {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.rsabout-cycle-mini > div {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(37, 231, 255, 0.3);
  background: rgba(0, 107, 137, 0.1);
  text-align: center;
}

.rsabout-cycle-mini strong {
  color: var(--rsabout-cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.rsabout-cycle-mini span {
  color: var(--rsabout-soft);
  font-size: 11px;
}


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

.rsabout-message__panel {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 46px;
  padding: 46px;
  overflow: hidden;
}

.rsabout-message__panel::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 179, 255, 0.13), transparent 68%);
}

.rsabout-message__photo {
  position: relative;
  z-index: 2;
  margin: 0;
  border: 1px solid rgba(37, 231, 255, 0.32);
  background: rgba(0, 8, 14, 0.82);
}

.rsabout-message__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(1, 8, 14, 0.94) 100%);
}

.rsabout-message__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.rsabout-message__photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
}

.rsabout-message__photo figcaption span {
  display: block;
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.rsabout-message__photo figcaption strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.rsabout-message__copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.rsabout-message__copy h2 {
  margin: 13px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.5;
}

.rsabout-message__copy > p:not(.rsabout-kicker) {
  margin: 17px 0 0;
  color: var(--rsabout-soft);
  font-size: 14px;
  line-height: 2;
}

.rsabout-message__signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(37, 231, 255, 0.22);
}

.rsabout-message__signature span,
.rsabout-message__signature strong {
  display: block;
}

.rsabout-message__signature span {
  color: var(--rsabout-dim);
  font-size: 12px;
}

.rsabout-message__signature strong {
  margin-top: 6px;
  font-size: 16px;
}


/* ============================================================
   PHILOSOPHY
============================================================ */

.rsabout-philosophy {
  padding-top: 56px;
}

.rsabout-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rsabout-philosophy-card {
  position: relative;
  min-height: 330px;
  padding: 30px 26px 28px;
  border: 1px solid var(--rsabout-cyan-line);
  background:
    linear-gradient(145deg, rgba(4, 38, 54, 0.86), rgba(1, 15, 25, 0.92));
  box-shadow:
    inset 0 0 28px rgba(0, 157, 210, 0.07),
    0 0 16px rgba(37, 231, 255, 0.08);
}

.rsabout-philosophy-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 76px;
  height: 1px;
  background: var(--rsabout-cyan);
  box-shadow: 0 0 9px rgba(37, 231, 255, 0.7);
}

.rsabout-philosophy-card > p:first-child {
  margin: 0;
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.rsabout-philosophy-card .rsabout-card-icon {
  width: 68px;
  height: 68px;
  margin: 28px 0 20px;
}

.rsabout-philosophy-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
}

.rsabout-philosophy-card > p:last-child {
  margin: 14px 0 0;
  color: var(--rsabout-soft);
  font-size: 13px;
  line-height: 1.9;
}


/* ============================================================
   NAME
============================================================ */

.rsabout-name__panel {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 24px;
  padding: 46px 48px;
  overflow: hidden;
}

.rsabout-name__copy {
  position: relative;
  z-index: 2;
}

.rsabout-name__copy h2 {
  margin: 13px 0 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.5;
}

.rsabout-name__definitions {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.rsabout-name__definitions div {
  padding: 15px 17px;
  border-left: 2px solid var(--rsabout-cyan);
  background: rgba(0, 103, 132, 0.1);
}

.rsabout-name__definitions dt {
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.rsabout-name__definitions dd {
  margin: 6px 0 0;
  color: var(--rsabout-soft);
  font-size: 13px;
  line-height: 1.8;
}

.rsabout-name__copy > p:last-child {
  margin: 22px 0 0;
  color: var(--rsabout-soft);
  font-size: 14px;
  line-height: 2;
}

.rsabout-name__visual {
  position: relative;
  z-index: 2;
  margin: 0 -36px 0 0;
}

.rsabout-name__visual img {
  width: 100%;
}


/* ============================================================
   VALUES
============================================================ */

.rsabout-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rsabout-value-card {
  position: relative;
  min-height: 260px;
  padding: 28px 22px;
  border: 1px solid rgba(37, 231, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(3, 34, 49, 0.82), rgba(1, 14, 23, 0.9));
}

.rsabout-value-card > span {
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.rsabout-value-card h3 {
  margin: 36px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.rsabout-value-card h3 small {
  display: block;
  margin-bottom: 6px;
  color: var(--rsabout-cyan);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.rsabout-value-card p {
  margin: 15px 0 0;
  color: var(--rsabout-soft);
  font-size: 12.5px;
  line-height: 1.9;
}


/* ============================================================
   BUSINESS
============================================================ */

.rsabout-business__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.rsabout-business-card {
  position: relative;
  min-height: 240px;
  padding: 26px 23px;
  border: 1px solid rgba(37, 231, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(3, 31, 45, 0.82), rgba(1, 14, 23, 0.92));
}

.rsabout-business-card > span {
  color: rgba(37, 231, 255, 0.62);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.rsabout-business-card h3 {
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.6;
}

.rsabout-business-card p {
  margin: 13px 0 0;
  color: var(--rsabout-soft);
  font-size: 12.5px;
  line-height: 1.9;
}


/* ============================================================
   COMPANY
============================================================ */

.rsabout-company__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 20px;
}

.rsabout-company__table {
  padding: 26px;
}

.rsabout-company__table dl {
  margin: 0;
}

.rsabout-company__table dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(37, 231, 255, 0.13);
}

.rsabout-company__table dl > div:last-child {
  border-bottom: 0;
}

.rsabout-company__table dt {
  color: var(--rsabout-cyan);
  font-size: 12px;
  font-weight: 700;
}

.rsabout-company__table dd {
  margin: 0;
  color: var(--rsabout-soft);
  font-size: 12.5px;
  line-height: 1.75;
}

.rsabout-access {
  overflow: hidden;
}

.rsabout-access__map {
  margin: 0;
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 231, 255, 0.28);
}

.rsabout-access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.82);
}

.rsabout-access__copy {
  padding: 24px 26px 28px;
}

.rsabout-access__copy h3 {
  margin: 8px 0 0;
  font-size: 21px;
}

.rsabout-access__copy p,
.rsabout-access__copy li {
  color: var(--rsabout-soft);
  font-size: 12.5px;
  line-height: 1.8;
}

.rsabout-access__copy p {
  margin: 13px 0 0;
}

.rsabout-access__copy ul {
  margin: 12px 0 0;
  padding-left: 1.3em;
}

.rsabout-access__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 240px;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid var(--rsabout-cyan);
  color: #eaffff !important;
  background: rgba(0, 110, 141, 0.15);
  font-size: 12px;
  font-weight: 700;
}


/* ============================================================
   NEXT
============================================================ */

.rsabout-next {
  padding-top: 48px;
  padding-bottom: 100px;
}

.rsabout-next__panel {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 20px;
  padding: 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 23, 38, 0.98), rgba(3, 34, 62, 0.78)),
    radial-gradient(circle at 82% 40%, rgba(0, 166, 255, 0.18), transparent 42%);
}

.rsabout-next__copy {
  position: relative;
  z-index: 2;
}

.rsabout-next__copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.45;
}

.rsabout-next__copy > p:not(.rsabout-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--rsabout-soft);
  font-size: 14px;
  line-height: 1.9;
}

.rsabout-next__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.rsabout-next__actions .rsabout-button {
  width: 100%;
  min-width: 0;
}

.rsabout-next__visual {
  position: absolute;
  right: -20px;
  bottom: -38px;
  z-index: 2;
  width: 500px;
  margin: 0;
}

.rsabout-next__visual img {
  width: 100%;
  filter:
    drop-shadow(0 20px 24px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 12px rgba(0, 183, 255, 0.16));
}


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

@media (max-width: 1100px) {

  .rsabout-hero {
    min-height: 700px;
  }

  .rsabout-hero__inner {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

  .rsabout-hero__visual {
    margin-right: -44px;
  }

  .rsabout-message__panel {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .rsabout-name__panel {
    grid-template-columns: 1fr 420px;
  }

  .rsabout-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rsabout-company__layout {
    grid-template-columns: 1fr;
  }

  .rsabout-next__panel {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .rsabout-next__visual {
    width: 390px;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

  body.admin-bar.page-template-page-about #header,
  body.admin-bar.page-template-page-about .l-header,
  body.admin-bar.page-template-page-about .header {
    top: 46px;
  }

  .rsabout-container {
    width: min(calc(100% - 28px), var(--rsabout-container));
  }

  .rsabout-section {
    padding: 56px 0;
  }

  .rsabout-section-heading {
    margin-bottom: 26px;
  }

  .rsabout-section-heading h2 {
    font-size: 27px;
  }


  /* Hero */

  .rsabout-hero {
    min-height: auto;
    padding: 112px 0 0;
    background:
      linear-gradient(
        180deg,
        rgba(1, 8, 15, 0.9) 0%,
        rgba(1, 9, 17, 0.74) 44%,
        rgba(1, 8, 15, 0.98) 100%
      ),
      var(--rsabout-hero-bg) center / cover no-repeat;
  }

  .rsabout-hero__inner {
    display: flex;
    flex-direction: column;
  }

  .rsabout-hero__copy {
    width: 100%;
    padding: 28px 10px 20px 18px;
  }

  .rsabout-hero__copy::before {
    height: 190px;
  }

  .rsabout-hero h1 {
    font-size: 40px;
  }

  .rsabout-hero__lead {
    margin-top: 20px;
    font-size: 23px;
  }

  .rsabout-hero__description {
    font-size: 13px;
    line-height: 1.9;
  }

  .rsabout-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rsabout-button {
    width: 100%;
    min-width: 0;
  }

  .rsabout-hero__visual {
    width: 116%;
    margin: 10px -8% -2px;
  }


  /* Why */

  .rsabout-why {
    padding-top: 34px;
  }

  .rsabout-why__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px;
  }

  .rsabout-issue-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px 16px;
  }

  .rsabout-card-icon {
    width: 40px;
    height: 40px;
  }

  .rsabout-cycle-mini {
    grid-template-columns: 1fr;
  }

  .rsabout-cycle-mini > span {
    transform: rotate(90deg);
  }


  /* Message */

  .rsabout-message__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px 30px;
  }

  .rsabout-message__photo {
    max-width: 320px;
    margin-inline: auto;
  }

  .rsabout-message__copy h2 {
    font-size: 29px;
  }

  .rsabout-message__copy > p:not(.rsabout-kicker) {
    font-size: 13px;
  }


  /* Philosophy */

  .rsabout-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .rsabout-philosophy-card {
    min-height: auto;
  }


  /* Name */

  .rsabout-name__panel {
    display: block;
    padding: 28px 20px 18px;
  }

  .rsabout-name__copy h2 {
    font-size: 27px;
  }

  .rsabout-name__visual {
    width: 112%;
    margin: 18px -6% 0;
  }


  /* Values / Business */

  .rsabout-values__grid,
  .rsabout-business__grid {
    grid-template-columns: 1fr;
  }

  .rsabout-value-card,
  .rsabout-business-card {
    min-height: auto;
  }

  .rsabout-value-card h3,
  .rsabout-business-card h3 {
    margin-top: 24px;
  }


  /* Company */

  .rsabout-company__table {
    padding: 18px;
  }

  .rsabout-company__table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rsabout-access__map {
    height: 220px;
  }

  .rsabout-access__button {
    width: 100%;
    min-width: 0;
  }


  /* Next */

  .rsabout-next {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .rsabout-next__panel {
    min-height: 700px;
    display: block;
    padding: 32px 20px 310px;
  }

  .rsabout-next__copy h2 {
    font-size: 30px;
  }

  .rsabout-next__actions {
    grid-template-columns: 1fr;
  }

  .rsabout-next__visual {
    right: -70px;
    bottom: -18px;
    width: 480px;
  }

}

.rsabout-message__signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(37, 231, 255, 0.22);
}

.rsabout-message__signature-text span,
.rsabout-message__signature-text strong {
  display: block;
}

.rsabout-message__signature-text span {
  color: var(--rsabout-dim);
  font-size: 12px;
}

.rsabout-message__signature-text strong {
  margin-top: 6px;
  font-size: 16px;
}

.rsabout-message__signature-image {
  display: block;
  width: min(220px, 42%);
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter:
    brightness(1.2)
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
}

@media (max-width: 767px) {

  .rsabout-message__signature {
    display: block;
  }

  .rsabout-message__signature-image {
    width: 180px;
    max-width: 70%;
    margin: 18px 0 0 auto;
  }

}

.rsabout-access__map {
  position: relative;
  height: 280px;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid rgba(37, 231, 255, 0.28);
  background: #06111b;
}

.rsabout-access__map > div,
.rsabout-access__map iframe {
  width: 100% !important;
  height: 100% !important;
}

.rsabout-access__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(37, 231, 255, 0.18);
  box-shadow:
    inset 0 0 28px rgba(0, 174, 226, 0.08);
}

