:root {
  --black: #282828;
  --ink: #111111;
  --gray: #aaa;
  --border: #cec6c6;
  --paper: #f8f7f6;
  --paper-deep: #e8f2fb;
  --white: #fff;
  --green: #1976d2;
  --deep-green: #0a315f;
  --blue: #1976d2;
  --accent: #f23a3c;
  --line: rgba(16, 38, 63, 0.13);
  --soft-blue: #edf7ff;
  --shadow-soft: 0 22px 70px rgba(7, 21, 36, 0.13);
  --brand-grad: linear-gradient(315deg, #0a4ea3 8%, #5db8ff 89%);
  --cta-grad: linear-gradient(315deg, #000 20%, #1976d2 77%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.62), transparent 360px),
    var(--paper);
  font-family: "Inter Tight", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 20000;
  pointer-events: none;
}

body::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 247, 255, 0.96), rgba(255, 255, 255, 0.98), rgba(237, 247, 255, 0.96));
  opacity: 0;
  transition: opacity 160ms ease;
}

body::after {
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-grad);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

body.is-entering::before {
  animation: pageFadeIn 240ms ease both;
}

body.is-entering::after {
  animation: pageLineIn 240ms ease both;
}

body.is-leaving::before,
body.is-leaving::after {
  opacity: 1;
}

body.is-leaving::after {
  transform: scaleX(1);
}

@keyframes pageFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pageLineIn {
  0% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

.keep-line,
.keep-phrase {
  white-space: nowrap;
}

.keep-phrase {
  display: inline-block;
}

strong,
dt,
dd,
a {
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
  hyphens: none;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  hyphens: none;
}

.floating-header {
  position: fixed;
  z-index: 10000;
  top: 22px;
  left: clamp(22px, 4.8vw, 72px);
  right: clamp(22px, 4.8vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1840px;
  margin: 0 auto;
  padding: 0 clamp(20px, 2vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(7, 21, 36, 0.2);
  backdrop-filter: blur(18px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  margin-left: auto;
  margin-right: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: #242424;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.76, 0, 0.24, 1);
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-active {
  color: var(--green);
}

.desktop-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.desktop-nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.nav-hover-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: 340px;
  overflow: hidden;
  color: #172437;
  background: linear-gradient(135deg, rgba(238, 248, 255, 0.98), rgba(213, 234, 250, 0.98));
  border: 1px solid rgba(91, 169, 236, 0.54);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 21, 36, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.desktop-nav .nav-item:hover .nav-hover-menu,
.desktop-nav .nav-item:focus-within .nav-hover-menu,
.desktop-nav .nav-item.is-open .nav-hover-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.desktop-nav .nav-hover-link {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 4px 18px;
  min-height: 86px;
  padding: 20px 26px;
  color: #172437;
  border-bottom: 1px solid rgba(109, 153, 190, 0.28);
}

.desktop-nav .nav-hover-link:last-child {
  border-bottom: 0;
}

.desktop-nav .nav-hover-link::after {
  display: none;
}

.desktop-nav .nav-hover-link span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.desktop-nav .nav-hover-link strong {
  font-size: 18px;
  line-height: 1.1;
}

.desktop-nav .nav-hover-link small {
  color: #5c6876;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.desktop-nav .nav-hover-link:hover {
  color: #0f2035;
  background: rgba(255, 255, 255, 0.4);
}

.desktop-nav .lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(30, 123, 213, 0.26);
  border-radius: 999px;
  color: var(--green);
  background: rgba(30, 123, 213, 0.08);
}

.desktop-nav .lang-switch::after {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 46px;
  overflow: hidden;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 32px;
  max-height: 46px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: #101010;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-text small {
  display: none;
  margin-top: 4px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.menu-button {
  display: none;
  place-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  margin-left: clamp(18px, 2vw, 30px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.menu-button span {
  display: block;
  width: 32px;
  height: 2px;
  background: #111;
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.menu-button:hover,
.menu-button.is-menu-active {
  background: rgba(25, 118, 210, 0.08);
}

.menu-button.is-menu-active span {
  background: #1976d2;
}

.menu-button.is-menu-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-menu-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-menu-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-choice-menu {
  position: fixed;
  top: var(--choice-top, 104px);
  left: var(--choice-left, 50%);
  z-index: 10001;
  width: var(--choice-width, 390px);
  color: var(--white);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-choice-menu > p {
  display: none;
}

.nav-choice-menu nav {
  display: grid;
  gap: 1px;
  overflow: hidden;
  max-height: min(70svh, 460px);
  overflow-y: auto;
  background: rgba(237, 247, 255, 0.9);
  border: 1px solid rgba(25, 118, 210, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 21, 36, 0.18);
  backdrop-filter: blur(16px);
}

.nav-choice-menu nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "num label"
    "num sub";
  gap: 4px 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 18px;
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.98), rgba(214, 235, 252, 0.96)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms ease var(--choice-delay, 0ms),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) var(--choice-delay, 0ms),
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.nav-choice-menu nav a.is-parent {
  min-height: 70px;
  background:
    linear-gradient(135deg, rgba(10, 49, 95, 0.98), rgba(25, 118, 210, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 22px);
}

.nav-choice-menu nav a.is-parent strong {
  font-size: 17px;
}

.nav-choice-menu nav a.is-child {
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 58px;
  padding-left: 18px;
  border-left: 0;
  background:
    linear-gradient(135deg, rgba(237, 247, 255, 0.98), rgba(213, 234, 251, 0.96)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.08) 0 1px, transparent 1px 22px);
  box-shadow: inset 3px 0 0 rgba(25, 118, 210, 0.58);
}

.nav-choice-menu nav a.is-child span {
  color: var(--green);
  font-size: 14px;
}

.nav-choice-menu nav a.is-child strong {
  font-size: 14px;
}

.nav-choice-menu nav a span {
  grid-area: num;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(0);
  transition: transform 220ms ease;
}

.nav-choice-menu nav a strong {
  grid-area: label;
  align-self: end;
  display: block;
  color: #142133;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
  text-wrap: balance;
}

.nav-choice-menu nav a small {
  grid-area: sub;
  align-self: start;
  display: block;
  color: rgba(20, 33, 51, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
}

.nav-choice-menu nav a.is-parent strong {
  font-size: 17px;
}

.nav-choice-menu nav a.is-child span {
  font-size: 14px;
}

.nav-choice-menu nav a.is-child strong {
  font-size: 14px;
}

.nav-choice-menu nav a:hover {
  color: #142133;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(225, 243, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.1) 0 1px, transparent 1px 22px);
  box-shadow: inset 3px 0 0 var(--green);
}

.nav-choice-menu nav a:hover small,
.nav-choice-menu nav a:hover span {
  color: var(--green);
}

.nav-choice-menu nav a:hover span {
  transform: translateX(3px);
}

.nav-choice-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.nav-choice-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  min-height: min(930px, 100svh);
  background: #071524;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.36) 0 3px, transparent 4px),
    radial-gradient(circle at 41% 46%, rgba(255, 255, 255, 0.72) 0 4px, transparent 7px),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.42) 0 2px, transparent 5px),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.62), transparent 13%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(25, 118, 210, 0.22) 44%, rgba(0, 0, 0, 0.64)),
    linear-gradient(180deg, rgba(5, 18, 34, 0.04), rgba(0, 0, 0, 0.84)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 0 1px,
      transparent 1px 18px
    ),
    linear-gradient(
      90deg,
      #020814 0%,
      #082653 10%,
      #1976d2 18%,
      #061d3c 25%,
      #3ba1ff 34%,
      #dcefff 46%,
      #62b9ff 52%,
      #08284c 61%,
      #a8d8ff 72%,
      #0a3f7a 84%,
      #020710 100%
    );
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.1);
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 42%, rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.18) 29px 30px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 52%);
  opacity: 0.96;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  right: clamp(-110px, -4vw, -28px);
  bottom: clamp(18px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(72px, 13vw, 188px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: clamp(64px, 8vw, 120px);
  bottom: clamp(56px, 9vw, 112px);
  display: grid;
  gap: 10px;
  min-width: 210px;
  padding-left: 22px;
  border-left: 2px solid rgba(255, 255, 255, 0.38);
}

.hero-index span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.hero-index strong {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 0.96fr) minmax(330px, 0.54fr);
  gap: clamp(42px, 5.6vw, 112px);
  align-items: center;
  width: min(1680px, calc(100% - clamp(84px, 10vw, 180px)));
  min-height: 100svh;
  margin: 0 auto;
  padding-top: clamp(94px, 10svh, 118px);
}

.hero-sub {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin: 0 0 36px;
  max-width: 980px;
  font-size: clamp(46px, 4vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: clamp(38px, 5svh, 68px);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.85;
}

.hero-feature {
  display: grid;
  gap: clamp(10px, 1.8svh, 16px);
  align-self: center;
  justify-self: end;
  width: min(100%, 470px);
  padding-top: clamp(32px, 7svh, 76px);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(82px, 12svh, 104px);
  padding: clamp(16px, 2.4svh, 20px) 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(40, 40, 40, 0.54)),
    rgba(40, 40, 40, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(25, 118, 210, 0.24)),
    var(--feature-image);
  background-position: center;
  background-size: cover;
  opacity: 0.46;
  filter: grayscale(1);
  transform: scale(1.02);
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 64px rgba(0, 0, 0, 0.34);
}

.feature-card:hover::before {
  opacity: 0.62;
  filter: grayscale(0.35);
  transform: scale(1.08);
}

.feature-card span,
.feature-card strong,
.feature-card small {
  position: relative;
  z-index: 1;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-card strong {
  display: block;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1;
  text-align: right;
  text-wrap: balance;
}

.feature-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.feature-card-01 {
  --feature-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=900&q=78");
}

.feature-card-02 {
  --feature-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=78");
}

.feature-card-03 {
  --feature-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=78");
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(176px, 250px) minmax(176px, 250px);
  gap: 32px;
  width: min(100%, 532px);
}

.dark-button,
.white-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 54px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.dark-button {
  color: var(--white);
  background: linear-gradient(135deg, #111 0%, #0a315f 58%, #1976d2 100%);
  box-shadow: 0 18px 34px rgba(7, 21, 36, 0.22);
}

.white-button {
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.13);
}

.dark-button:hover,
.white-button:hover,
.service-list a:hover,
.row-heading a:hover {
  transform: translateY(-4px);
}

.dark-button:hover {
  box-shadow: 0 26px 46px rgba(7, 21, 36, 0.28);
}

.white-button:hover {
  color: var(--green);
  box-shadow: 0 26px 46px rgba(255, 255, 255, 0.16);
}

.dark-button span,
.white-button span {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  transform: translateY(-50%);
}

.row-heading a span,
.service-list a span,
.contact-band em {
  margin-left: 8px;
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.scroll-label {
  position: absolute;
  z-index: 1;
  right: 28px;
  top: 96px;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.mission-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  padding: clamp(64px, 9vw, 118px) max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(8, 45, 84, 0.84)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.mission-panel span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.mission-panel h2 {
  margin: 0;
  font-size: clamp(31px, 5.2vw, 62px);
  line-height: 1.34;
}

.mission-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.15;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 128px) 24px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 780ms ease var(--reveal-delay, 0ms),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: 178px 24px 102px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(8, 45, 84, 0.62) 48%, rgba(0, 0, 0, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 28px),
    linear-gradient(90deg, #020814 0%, #0b3f7c 36%, #8fd0ff 54%, #0a315f 78%, #020710 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 56%),
    linear-gradient(90deg, rgba(25, 118, 210, 0.38), transparent 44%),
    var(--page-image);
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  filter: grayscale(0.42) contrast(1.12);
}

.page-hero::after {
  content: "RLink";
  position: absolute;
  right: -18px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.075);
  font-size: clamp(82px, 16vw, 220px);
  font-weight: 800;
  line-height: 0.8;
}

.page-hero-about {
  --page-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=82");
}

.page-hero-services {
  --page-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=82");
}

.page-hero-company {
  --page-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
}

.page-hero-contact {
  --page-image: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=82");
}

.page-hero-rpo {
  --page-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=82");
}

.page-hero > div,
.page-content > * {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero > div {
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin-bottom: 18px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-width: calc(100vw - 64px);
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero-copy {
  display: block;
  max-width: min(680px, calc(100vw - 80px));
  margin-top: 32px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
  border-left: 3px solid #8bc7ff;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.page-content {
  background: var(--white);
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-grid article,
.contact-grid article,
.text-panel {
  position: relative;
  padding: 34px;
  background: #fbfbfa;
  border: 1px solid rgba(206, 198, 198, 0.72);
  border-radius: 2px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04);
}

.detail-grid article::before,
.contact-grid article::before,
.text-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-grad);
}

.detail-grid span,
.contact-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-grid h3,
.contact-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.detail-grid p,
.contact-grid p,
.text-panel p {
  margin: 0;
  color: #545454;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.info-table {
  display: grid;
  margin: 0 auto;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.info-table div {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.info-table dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
  max-width: 100%;
}

.info-table dd {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  min-width: 0;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.company-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(28px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    var(--brand-grad);
  border-radius: 2px;
  box-shadow: 18px 22px 0 var(--paper-deep);
}

.company-card::after {
  content: "R";
  position: absolute;
  right: -22px;
  bottom: -46px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 260px;
  font-weight: 800;
  line-height: 0.8;
}

.company-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  max-width: 100%;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.12;
  overflow-wrap: normal;
  white-space: normal;
  text-wrap: balance;
}

.company-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 800;
  line-height: 1.8;
  white-space: nowrap;
}

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

.contact-grid article:first-child {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(8, 45, 84, 0.66)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1200&q=82");
  background-position: center;
  background-size: cover;
}

.contact-grid article:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid article {
  min-height: 360px;
}

.contact-grid .dark-button,
.contact-grid .white-button {
  width: min(100%, 280px);
  margin-top: 28px;
}

.rpo-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: clamp(52px, 8vw, 116px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(8, 45, 84, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 28px),
    #06182a;
}

.rpo-lead,
.rpo-visual {
  width: min(100%, 1120px);
}

.rpo-lead {
  justify-self: end;
  max-width: 650px;
}

.rpo-lead span,
.rpo-scope span,
.rpo-flow-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.rpo-lead h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.38;
  letter-spacing: 0;
}

.rpo-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
}

.rpo-visual {
  position: relative;
  min-height: 500px;
  padding: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1400&q=82");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow:
    18px 22px 0 rgba(232, 242, 251, 0.12),
    0 32px 72px rgba(0, 0, 0, 0.22);
}

.rpo-visual::after {
  content: "RPO";
  position: absolute;
  right: -20px;
  bottom: -30px;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(96px, 14vw, 210px);
  font-weight: 800;
  line-height: 0.8;
}

.rpo-visual span,
.rpo-visual strong {
  position: relative;
  z-index: 1;
}

.rpo-visual span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.rpo-visual strong {
  display: block;
  margin-top: 190px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.02;
}

.rpo-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
}

.rpo-scope article {
  position: relative;
  min-height: 330px;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 21, 36, 0.06);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.rpo-scope article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-grad);
  border-radius: 8px 8px 0 0;
}

.rpo-scope article:hover {
  transform: translateY(-8px);
  border-color: rgba(25, 118, 210, 0.26);
  box-shadow: var(--shadow-soft);
}

.rpo-scope span {
  color: var(--green);
}

.rpo-scope h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.38;
  letter-spacing: 0;
}

.rpo-scope p {
  margin: 0;
  color: #545454;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.rpo-flow {
  padding: clamp(72px, 10vw, 124px) 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(8, 45, 84, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 28px),
    #05121f;
}

.rpo-flow .section-heading h2,
.rpo-flow .section-heading p {
  color: var(--white);
}

.rpo-flow .section-heading p::before {
  background: var(--white);
}

.rpo-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rpo-flow-grid article {
  min-height: 240px;
  padding: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.055);
}

.rpo-flow-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.rpo-flow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.section-heading {
  max-width: 1120px;
  margin: 0 auto clamp(44px, 6vw, 68px);
}

.section-heading h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.section-heading p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.section-heading p::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--black);
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.row-heading a {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
  font-size: 14px;
  font-weight: 600;
}

.what {
  background:
    linear-gradient(90deg, var(--white), rgba(248, 247, 246, 0.78)),
    var(--white);
}

.what-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.what-visual {
  position: relative;
  min-height: 430px;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(17, 17, 17, 0.72), rgba(25, 118, 210, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 15px),
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=82");
  background-position: center;
  background-size: cover;
  box-shadow: 18px 22px 0 var(--paper-deep);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms ease;
}

.what-visual:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 26px 30px 0 var(--paper-deep);
}

.what-visual::before {
  content: "RLink";
  position: absolute;
  right: -10px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: 0;
}

.visual-label {
  position: absolute;
  left: 30px;
  top: 30px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.visual-frame {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 58%;
  height: 54%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.what-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.45;
}

.what-copy p {
  margin-bottom: 18px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.services {
  background:
    linear-gradient(180deg, #fff, #fbfbfa 74%);
}

.services::before {
  content: "SERVICES";
  position: absolute;
  right: -20px;
  top: 44px;
  color: rgba(40, 40, 40, 0.045);
  font-size: clamp(72px, 14vw, 188px);
  font-weight: 800;
  line-height: 1;
}

.market {
  background:
    linear-gradient(180deg, #fff, var(--paper));
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.market-grid article {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(206, 198, 198, 0.68);
  border-radius: 2px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.market-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--brand-grad);
}

.market-grid article::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(25, 118, 210, 0.24);
  transform: rotate(45deg);
}

.market-grid span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.market-grid h3 {
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 1.45;
}

.market-grid p {
  margin: 0;
  color: #545454;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.service-list {
  display: grid;
  gap: clamp(86px, 10vw, 136px);
  max-width: 1120px;
  margin: 0 auto;
}

.service-list article {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
  grid-template-areas:
    "text mockup"
    "body mockup"
    "link mockup";
  gap: 22px clamp(54px, 8vw, 108px);
  align-items: center;
  min-height: 470px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-list article::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms cubic-bezier(0.76, 0, 0.24, 1);
}

.service-list article::after {
  display: none;
}

.service-list article:hover::before {
  transform: scaleX(1);
}

.service-list article > * {
  position: relative;
  z-index: 1;
}

.service-text span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-text {
  grid-area: text;
}

.service-text h3 {
  margin-bottom: 10px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-text p,
.service-list article > p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.service-list article > p {
  grid-area: body;
  color: #515151;
  max-width: 610px;
  font-size: 15px;
  line-height: 2;
}

.service-list a {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 310px);
  min-height: 70px;
  padding: 14px 24px;
  color: var(--white);
  background: linear-gradient(315deg, #000 18%, #1976d2 100%);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.service-mockup {
  grid-area: mockup;
  position: relative;
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
    var(--mockup-image);
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  box-shadow:
    0 24px 28px rgba(0, 0, 0, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.62) inset;
  transform: perspective(980px) rotateX(10deg) rotateZ(-8deg);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms ease,
    filter 620ms ease;
}

.service-list article:hover .service-mockup {
  transform: perspective(980px) rotateX(6deg) rotateZ(-4deg) translateY(-8px);
  box-shadow:
    0 34px 46px rgba(0, 0, 0, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.72) inset;
  filter: saturate(1.08);
}

.service-mockup::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
}

.service-mockup::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 88px;
  height: 28px;
  background: var(--brand-grad);
  border-radius: 999px;
}

.service-mockup span,
.service-mockup strong {
  position: relative;
  z-index: 1;
}

.service-mockup span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-mockup strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.mockup-01 {
  --mockup-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1200&q=82");
}

.mockup-02 {
  --mockup-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=82");
}

.mockup-03 {
  --mockup-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=82");
}

.mockup-04 {
  --mockup-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1200&q=82");
}

.service-list article:nth-child(even) {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.86fr);
  grid-template-areas:
    "mockup text"
    "mockup body"
    "mockup link";
}

.service-list article:nth-child(even) .service-mockup {
  transform: perspective(980px) rotateX(10deg) rotateZ(8deg);
}

.service-list article:nth-child(even):hover .service-mockup {
  transform: perspective(980px) rotateX(6deg) rotateZ(4deg) translateY(-8px);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 10vw, 128px) max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(8, 45, 84, 0.68)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 28px),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.service-cta > div,
.service-cta > a {
  max-width: none;
}

.service-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.45;
  letter-spacing: 0;
}

.service-cta p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
}

.service-answer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 68px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.94), rgba(10, 49, 95, 0.72)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 28px);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(7, 21, 36, 0.14);
}

.service-answer::after {
  content: "SEARCH";
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 120px;
  font-weight: 800;
  line-height: 0.82;
}

.product-answer::after {
  content: "SNAPP";
}

.service-answer span,
.service-answer h2,
.service-answer p,
.service-answer a {
  position: relative;
  z-index: 1;
}

.service-answer span {
  display: block;
  margin-bottom: 18px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
}

.service-answer h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
}

.service-answer p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.service-quick {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-quick li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(139, 199, 255, 0.24);
  border-radius: 8px;
}

.service-quick strong {
  display: block;
  margin-bottom: 8px;
  color: #8bc7ff;
  font-size: 12px;
  font-weight: 800;
}

.service-quick span {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.service-target-list {
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-target-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  background: #fff;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 21, 36, 0.05);
}

.service-target-list strong {
  color: #20242a;
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.service-target-list span {
  color: #4c5661;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.recruitment-method-section,
.placement-section {
  background:
    linear-gradient(180deg, #f7fbff, #fff);
}

.recruitment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.recruitment-method-grid article {
  position: relative;
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 6, 16, 0.94), rgba(25, 118, 210, 0.58)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.16) 0 1px, transparent 1px 24px);
  border: 1px solid rgba(139, 199, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(7, 21, 36, 0.12);
}

.recruitment-method-grid article::after {
  content: "SEARCH";
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 92px;
  font-weight: 800;
  line-height: 0.8;
}

.recruitment-method-grid span {
  display: block;
  margin-bottom: 26px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
}

.recruitment-method-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
}

.recruitment-method-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.placement-grid article {
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(7, 21, 36, 0.06);
}

.placement-grid h3 {
  margin: 0 0 18px;
  color: #20242a;
  font-size: 20px;
  line-height: 1.45;
}

.placement-grid p {
  margin: 0;
  color: #4c5661;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.placement-note {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  color: #68727d;
  font-size: 13px;
  font-weight: 700;
}

.careers {
  background: var(--white);
}

.team {
  background:
    linear-gradient(180deg, var(--paper), #fff);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.team-grid article {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  grid-template-areas:
    "avatar role"
    "avatar name"
    "avatar text";
  gap: 8px 24px;
  min-height: 260px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(206, 198, 198, 0.72);
  border-radius: 2px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.avatar {
  grid-area: avatar;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--white);
  background: var(--brand-grad);
  border-radius: 2px;
  font-size: 42px;
  font-weight: 800;
}

.team-grid span {
  grid-area: role;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-grid h3 {
  grid-area: name;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.team-grid p {
  grid-area: text;
  margin: 8px 0 0;
  color: #545454;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.careers-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 32px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(8, 45, 84, 0.48)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  border-radius: 2px;
  box-shadow: 18px 22px 0 var(--paper-deep);
}

.careers-box h3 {
  margin-bottom: 22px;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.55;
}

.careers-box p {
  margin: 0;
  max-width: 700px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--black);
}

.contact-band a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title icon"
    "text icon";
  gap: 8px 24px;
  min-height: 188px;
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-band strong {
  grid-area: title;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.contact-band span {
  grid-area: text;
  font-size: 14px;
  font-weight: 700;
}

.contact-band em {
  grid-area: icon;
  align-self: center;
  justify-self: end;
  font-size: 42px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: var(--white);
  background: #1f1f1f;
  font-size: 12px;
  font-weight: 600;
}

.rpo-page {
  background: #f4f8fc;
}

.rpo-page .page-hero-rpo {
  min-height: 780px;
  align-items: center;
  padding: 150px 24px 86px;
  background:
    radial-gradient(circle at 68% 38%, rgba(139, 199, 255, 0.34), transparent 23%),
    linear-gradient(90deg, #020610 0%, #06172b 42%, #0a315f 70%, #020610 100%);
}

.rpo-page .page-hero-rpo::before {
  opacity: 0.34;
  filter: grayscale(0.2) contrast(1.18);
}

.rpo-page .page-hero-rpo::after {
  content: "RPO";
  right: -28px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(120px, 19vw, 290px);
}

.rpo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(44px, 7vw, 108px);
  align-items: end;
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
}

.rpo-hero-copy {
  max-width: 760px;
}

.rpo-hero-copy p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.rpo-hero-copy p::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #8bc7ff;
}

.rpo-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(52px, 7.2vw, 104px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.rpo-page .page-hero-copy {
  max-width: 650px;
  margin-top: 34px;
  padding-left: 24px;
  border-left: 4px solid #8bc7ff;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 2.05;
}

.rpo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.rpo-hero-actions .dark-button,
.rpo-hero-actions .white-button {
  min-width: 190px;
  min-height: 64px;
}

.rpo-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.rpo-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 199, 255, 0.28), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.rpo-hero-panel::after {
  content: "01";
  position: absolute;
  right: 24px;
  top: 24px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.rpo-hero-panel span,
.rpo-hero-panel strong,
.rpo-hero-panel ul {
  position: relative;
  z-index: 1;
}

.rpo-hero-panel span {
  display: block;
  margin-bottom: 82px;
  color: #8bc7ff;
  font-size: 12px;
  font-weight: 800;
}

.rpo-hero-panel strong {
  display: block;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 0.96;
}

.rpo-hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.rpo-hero-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.rpo-page .rpo-intro {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  padding: clamp(92px, 10vw, 138px) 24px;
  color: var(--black);
  background:
    linear-gradient(90deg, #fff, rgba(237, 247, 255, 0.84)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.08) 0 1px, transparent 1px 28px);
}

.rpo-page .rpo-lead span {
  color: var(--green);
}

.rpo-page .rpo-lead h2 {
  color: #111;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.32;
}

.rpo-page .rpo-lead p {
  color: #4c5661;
}

.rpo-page .rpo-visual {
  min-height: 520px;
  border: 0;
  box-shadow:
    22px 26px 0 #dcefff,
    0 36px 80px rgba(7, 21, 36, 0.18);
}

.rpo-page .page-content {
  padding-top: clamp(92px, 10vw, 140px);
  background:
    linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
}

.rpo-page .rpo-scope {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.rpo-page .rpo-scope article {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 38px;
}

.rpo-page .rpo-scope h3 {
  max-width: 360px;
  font-size: clamp(28px, 3vw, 40px);
}

.rpo-page .rpo-scope p {
  max-width: 520px;
  font-size: 15px;
}

.rpo-page .rpo-flow {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(10, 49, 95, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 28px),
    #020610;
}

.rpo-page .rpo-flow-grid {
  gap: 16px;
  background: transparent;
  border: 0;
}

.rpo-page .rpo-flow-grid article {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.rpo-page .subpage-cta {
  min-height: 380px;
}

@media (max-width: 900px) {
  .floating-header {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 62px;
    padding: 0 17px;
  }

  .brand-symbol {
    width: 30px;
    height: 42px;
  }

  .brand-symbol img {
    max-width: 30px;
    max-height: 42px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .desktop-nav {
    display: flex;
    flex: 0 1 auto;
    gap: clamp(7px, 1.8vw, 12px);
    margin-left: auto;
    font-size: 10px;
  }

  .desktop-nav .nav-item > a {
    height: 38px;
  }

  .desktop-nav .lang-switch {
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
  }

  .nav-hover-menu {
    position: fixed;
    top: 82px;
    left: 50vw;
    width: min(320px, calc(100vw - 28px));
    transform: translate(-50%, 8px);
  }

  .desktop-nav .nav-item:hover .nav-hover-menu,
  .desktop-nav .nav-item:focus-within .nav-hover-menu,
  .desktop-nav .nav-item.is-open .nav-hover-menu {
    transform: translate(-50%, 0);
  }

  .desktop-nav .nav-hover-link {
    min-height: 76px;
    padding: 17px 22px;
  }

  .desktop-nav .nav-hover-link strong {
    font-size: 16px;
  }

  .desktop-nav .nav-hover-link small {
    font-size: 12px;
  }

  .menu-button {
    display: none;
  }

  .hero-content {
    width: calc(100% - 16px);
    padding-top: 118px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 16px);
    min-height: 100svh;
    padding-top: 92px;
  }

  .hero-content {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-feature {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-bg {
    transform: none;
  }

  .hero-mark {
    right: -42px;
    bottom: 24px;
    font-size: 72px;
  }

  .hero-index {
    display: none;
  }

  .hero-copy {
    margin-bottom: 74px;
    font-size: 15px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 285px);
  }

  .dark-button,
  .white-button {
    min-height: 66px;
  }

  .mission-panel {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }

  .row-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .what-layout,
  .service-list article,
  .service-cta,
  .careers-box,
  .market-grid,
  .team-grid,
  .contact-band,
  .detail-grid,
  .company-profile,
  .contact-grid,
  .recruitment-method-grid,
  .placement-grid,
  .rpo-intro,
  .rpo-scope,
  .rpo-flow-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 460px;
    padding: 132px 24px 68px;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-card {
    min-height: 320px;
    box-shadow: 10px 12px 0 var(--paper-deep);
  }

  .rpo-lead {
    justify-self: stretch;
    max-width: none;
  }

  .rpo-visual {
    min-height: 320px;
    box-shadow: 10px 12px 0 rgba(232, 242, 251, 0.18);
  }

  .rpo-visual strong {
    margin-top: 110px;
  }

  .rpo-scope article,
  .rpo-flow-grid article {
    min-height: auto;
  }

  .service-answer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 24px;
  }

  .service-answer h2 {
    font-size: 30px;
    line-height: 1.55;
  }

  .service-answer::after {
    font-size: 78px;
  }

  .service-target-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .recruitment-method-grid article {
    min-height: auto;
    padding: 30px 24px;
  }

  .placement-grid article {
    min-height: auto;
  }

  .what-visual {
    min-height: 320px;
    box-shadow: 10px 12px 0 var(--paper-deep);
  }

  .service-list article {
    grid-template-areas:
      "text"
      "mockup"
      "body"
      "link";
    gap: 22px;
    min-height: auto;
  }

  .service-list article::after {
    width: 100%;
    opacity: 0.5;
  }

  .service-list article:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "mockup"
      "body"
      "link";
  }

  .service-text h3 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .service-mockup,
  .service-list article:nth-child(even) .service-mockup {
    min-height: 220px;
    transform: none;
  }

  .team-grid article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "avatar"
      "role"
      "name"
      "text";
  }

  .service-list a {
    width: 100%;
  }

  .service-cta > a,
  .careers-box > a {
    width: min(100%, 260px);
  }

  .careers-box {
    box-shadow: 10px 12px 0 var(--paper-deep);
  }

  .contact-band a {
    min-height: 146px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(38px, 11.2vw, 52px);
    letter-spacing: 0;
  }

  .hero-copy {
    max-width: 345px;
    line-height: 1.8;
  }

  .hero-mark {
    display: none;
  }

  .mission-panel h2 {
    font-size: 29px;
  }

  .market-grid article,
  .service-list article,
  .team-grid article {
    padding: 0;
  }

  .market-grid article,
  .team-grid article {
    padding: 26px;
  }

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

  .page-hero h1 {
    font-size: 38px;
  }

  .detail-grid article,
  .contact-grid article,
  .text-panel {
    padding: 26px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 900px) {
  .rpo-hero-inner,
  .rpo-page .rpo-intro,
  .rpo-page .rpo-scope,
  .rpo-page .rpo-flow-grid {
    grid-template-columns: 1fr;
  }

  .rpo-hero-inner {
    width: calc(100% - 28px);
    gap: 34px;
  }

  .rpo-page .page-hero-rpo {
    min-height: auto;
    padding: 132px 20px 64px;
  }

  .rpo-hero-copy h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .rpo-hero-panel {
    min-height: 340px;
  }

  .rpo-hero-panel span {
    margin-bottom: 54px;
  }
}

.rpo-command {
  background: #020610;
}

.rpo-command .page-hero-rpo {
  min-height: 860px;
  padding: 152px 24px 96px;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.95), rgba(4, 18, 34, 0.82) 47%, rgba(25, 118, 210, 0.18)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(139, 199, 255, 0.08) 0 1px, transparent 1px 34px),
    #020610;
}

.rpo-command .page-hero-rpo::before {
  opacity: 0.26;
  mix-blend-mode: screen;
  filter: grayscale(0.1) contrast(1.24);
}

.rpo-command .page-hero-rpo::after {
  content: "COMMAND";
  right: -26px;
  bottom: 26px;
  color: rgba(139, 199, 255, 0.08);
  font-size: 168px;
}

.rpo-command .rpo-hero-inner {
  grid-template-columns: minmax(0, 0.76fr) minmax(430px, 0.7fr);
  align-items: center;
  width: min(1360px, calc(100% - 84px));
}

.rpo-command .rpo-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.rpo-command-board {
  z-index: 1;
}

.rpo-command .rpo-hero-copy p {
  color: #8bc7ff;
}

.rpo-command .rpo-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(58px, 4.7vw, 78px);
  line-height: 1.08;
}

.rpo-command .page-hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.045);
  border-left: 4px solid #8bc7ff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  padding: 22px 24px;
}

.rpo-command-board {
  display: grid;
  gap: 12px;
  min-height: 540px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(4, 18, 34, 0.72);
  border: 1px solid rgba(139, 199, 255, 0.24);
  border-radius: 8px;
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.rpo-command-board::before {
  background:
    linear-gradient(90deg, transparent, rgba(139, 199, 255, 0.2), transparent),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.11) 0 1px, transparent 1px 24px);
}

.rpo-command-board::after {
  content: "LIVE";
  color: rgba(139, 199, 255, 0.18);
  font-size: 42px;
}

.board-head,
.board-row {
  position: relative;
  z-index: 1;
}

.board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.board-head span {
  display: block;
  margin: 0;
  color: #8bc7ff;
}

.board-head strong {
  font-size: 34px;
  line-height: 1;
}

.board-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.board-row-active {
  background:
    linear-gradient(90deg, rgba(25, 118, 210, 0.58), rgba(139, 199, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 199, 255, 0.38);
}

.board-row span {
  display: block;
  margin: 0;
  color: #8bc7ff;
  font-size: 12px;
  font-weight: 800;
}

.board-row p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.board-row b {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.rpo-signal-strip {
  padding: clamp(64px, 8vw, 104px) 24px;
  color: var(--white);
  background:
    linear-gradient(110deg, #020610 0%, #08264a 54%, #0a315f 100%),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.13) 0 1px, transparent 1px 34px);
}

.rpo-signal-strip .section-heading h2,
.rpo-signal-strip .section-heading p {
  color: var(--white);
}

.rpo-signal-strip .section-heading p::before {
  background: var(--white);
}

.rpo-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.rpo-signal-strip article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 199, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.rpo-signal-strip article:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -10px;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #0a315f;
  background: #8bc7ff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.rpo-signal-strip span {
  display: inline-flex;
  margin-bottom: 38px;
  color: #8bc7ff;
  font-size: 12px;
  font-weight: 800;
}

.rpo-signal-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.rpo-signal-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.rpo-command .rpo-intro {
  background:
    linear-gradient(120deg, #f7fbff 0%, #fff 44%, #e7f4ff 100%);
}

.rpo-system {
  background:
    linear-gradient(180deg, #020610 0%, #06172b 100%);
  color: var(--white);
}

.rpo-system .section-heading h2,
.rpo-system .section-heading p {
  color: var(--white);
}

.rpo-system .section-heading p::before {
  background: var(--white);
}

.rpo-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.rpo-system-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(139, 199, 255, 0.18);
  border-radius: 8px;
}

.rpo-system-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  height: 1px;
  background: linear-gradient(90deg, #8bc7ff, transparent);
}

.rpo-system-card span {
  display: inline-flex;
  margin-bottom: 72px;
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
}

.rpo-system-card h3 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.36;
}

.rpo-system-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.rpo-command .rpo-flow {
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.94), rgba(10, 49, 95, 0.78)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 34px),
    #020610;
}

@media (max-width: 900px) {
  .rpo-command .rpo-hero-inner,
  .rpo-signal-grid,
  .rpo-system-grid {
    grid-template-columns: 1fr;
  }

  .rpo-command .rpo-hero-inner {
    width: calc(100% - 28px);
  }

  .rpo-command .rpo-hero-copy h1 {
    font-size: 56px;
  }

  .rpo-command-board {
    min-height: auto;
  }

  .rpo-signal-strip {
    padding: 56px 16px;
  }

  .rpo-signal-grid {
    gap: 12px;
  }

  .rpo-signal-strip article {
    min-height: 150px;
  }

  .rpo-signal-strip article:not(:last-child)::after {
    right: 24px;
    top: auto;
    bottom: -17px;
    transform: rotate(90deg);
  }
}

.command-site {
  background:
    radial-gradient(circle at 76% 8%, rgba(139, 199, 255, 0.14), transparent 26%),
    #020610;
}

.command-site .floating-header {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(139, 199, 255, 0.18);
  box-shadow: 0 22px 66px rgba(0, 0, 0, 0.24);
}

.command-site .hero {
  min-height: 100svh;
  background: #020610;
}

.command-site .hero-bg {
  background:
    radial-gradient(circle at 38% 42%, rgba(139, 199, 255, 0.26), transparent 18%),
    linear-gradient(90deg, rgba(2, 6, 16, 0.92), rgba(5, 28, 52, 0.72) 48%, rgba(25, 118, 210, 0.24)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.13) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(139, 199, 255, 0.08) 0 1px, transparent 1px 34px),
    #020610;
  filter: none;
}

.command-site .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 42%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
  opacity: 1;
}

.command-site .hero h1 {
  max-width: 960px;
  font-family: "Inter Tight", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(50px, 5.25vw, 86px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.command-site .hero-copy {
  max-width: 760px;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  border-left: 4px solid #8bc7ff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.command-site .hero-feature {
  gap: clamp(10px, 1.6svh, 14px);
}

.command-site .feature-card {
  min-height: clamp(84px, 12svh, 104px);
  border: 1px solid rgba(139, 199, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.86), rgba(10, 49, 95, 0.54)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.command-site .feature-card::before {
  opacity: 0.34;
  filter: grayscale(0.3) contrast(1.12);
}

.command-site .page-hero:not(.page-hero-rpo) {
  min-height: 680px;
  align-items: center;
  padding: 156px 24px 86px;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.94), rgba(4, 18, 34, 0.78) 50%, rgba(25, 118, 210, 0.2)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.13) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(139, 199, 255, 0.08) 0 1px, transparent 1px 34px),
    #020610;
}

.command-site .page-hero:not(.page-hero-rpo)::before {
  opacity: 0.26;
  mix-blend-mode: screen;
  filter: grayscale(0.18) contrast(1.18);
}

.command-site .page-hero:not(.page-hero-rpo) > div {
  width: min(1180px, calc(100% - 72px));
}

.command-site .page-hero:not(.page-hero-rpo) h1 {
  max-width: min(1120px, calc(100vw - 128px));
  font-size: clamp(46px, 5.25vw, 78px);
  font-weight: 800;
  line-height: 1.14;
}

.command-site .page-hero:not(.page-hero-rpo) .page-hero-copy {
  max-width: 720px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #8bc7ff;
}

.command-site .page-hero-about::after {
  content: "ABOUT";
}

.command-site.about-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 199, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #f3f8fd 0, #ffffff 560px);
}

.command-site.about-page .page-hero-about {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.92), rgba(5, 22, 42, 0.78) 50%, rgba(25, 118, 210, 0.22)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.13) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(139, 199, 255, 0.08) 0 1px, transparent 1px 34px),
    #020610;
}

.command-site.about-page .page-hero-about::before {
  opacity: 0.34;
  mix-blend-mode: screen;
  filter: grayscale(0.12) contrast(1.18);
}

.command-site.about-page .page-hero-about::after {
  color: rgba(255, 255, 255, 0.075);
}

.command-site.about-page .page-hero-about p {
  color: #8bc7ff;
}

.command-site.about-page .page-hero-about h1 {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.command-site.about-page .page-hero-about .page-hero-copy {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(3, 13, 26, 0.46);
  border-left-color: #8bc7ff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.command-site .page-hero-services::after {
  content: "SERVICE";
}

.command-site .page-hero-company::after {
  content: "COMPANY";
}

.command-site .page-hero-contact::after {
  content: "CONTACT";
}

.command-site .page-hero-member::after {
  content: "MEMBER";
}

.command-site .profile-compact-hero {
  min-height: 360px;
  align-items: end;
  padding: 142px 24px 54px;
}

.command-site .profile-compact-hero > div {
  width: min(900px, calc(100% - 72px));
}

.command-site .profile-compact-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.4vw, 64px);
}

.command-site .profile-compact-hero .page-hero-copy {
  max-width: 520px;
  padding: 14px 18px;
}

.command-site .profile-compact-hero::after {
  font-size: clamp(72px, 14vw, 190px);
  opacity: 0.1;
}

.command-site .what,
.command-site .page-content,
.command-site .services,
.command-site .careers {
  background:
    linear-gradient(180deg, #fff, #f4f8fc);
}

.command-site .mission-panel,
.command-site .service-cta,
.command-site .careers-box {
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.9), rgba(10, 49, 95, 0.74)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 34px),
    var(--page-image, #020610);
}

.command-site .detail-grid article,
.command-site .contact-grid article,
.command-site .team-grid article,
.command-site .market-grid article,
.command-site .text-panel {
  overflow: hidden;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.05) 0 1px, transparent 1px 26px);
  box-shadow: 0 22px 54px rgba(7, 21, 36, 0.08);
}

.command-site .detail-grid article::before,
.command-site .contact-grid article::before,
.command-site .text-panel::before {
  height: 5px;
  background: linear-gradient(90deg, #1976d2, #8bc7ff);
}

.executive-section {
  padding-top: clamp(82px, 9vw, 132px);
}

.executive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 72px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.executive-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0%, #f7fbff 100%),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.045) 0 1px, transparent 1px 30px);
  box-shadow: 0 26px 76px rgba(7, 21, 36, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.executive-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.executive-card:nth-child(even) .executive-photo {
  order: 2;
}

.executive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 118, 210, 0.36);
  box-shadow: 0 34px 92px rgba(7, 21, 36, 0.15);
}

.executive-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 35vw, 500px);
  margin: 0;
  background:
    linear-gradient(135deg, rgba(139, 199, 255, 0.2), rgba(2, 6, 16, 0.06)),
    #eaf4ff;
}

.executive-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

.executive-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 360ms ease, filter 360ms ease;
}

.executive-photo-bio {
  position: absolute;
  inset: 18px;
  z-index: 3;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 10, 22, 0.56), rgba(2, 10, 22, 0.86));
  border-left: 4px solid #8bc7ff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.executive-photo-bio span {
  color: #8bc7ff;
  font-size: 12px;
  font-weight: 800;
}

.executive-photo-bio p {
  margin: 0;
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 700;
  line-height: 1.62;
}

.executive-mobile-bio {
  display: none;
}

.executive-card:hover .executive-photo img,
.executive-card:focus-visible .executive-photo img {
  transform: scale(1.035);
  filter: brightness(0.68) saturate(0.92);
}

.executive-card:hover .executive-photo-bio,
.executive-card:focus-visible .executive-photo-bio {
  opacity: 1;
  transform: translateY(0);
}

.executive-placeholder,
.executive-detail-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 199, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #020610 0%, #0a315f 100%),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.13) 0 1px, transparent 1px 34px);
}

.executive-placeholder strong,
.executive-detail-placeholder strong {
  font-size: clamp(54px, 8vw, 104px);
  line-height: 1;
  letter-spacing: 0;
}

.executive-placeholder span,
.executive-detail-placeholder span {
  color: #8bc7ff;
  font-size: 15px;
  font-weight: 800;
}

.executive-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5.6vw, 78px);
}

.executive-card-body span,
.executive-bio > span,
.executive-link-panel span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #1976d2;
  font-size: 13px;
  font-weight: 800;
}

.executive-card-body h3,
.executive-link-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.executive-card-body small {
  display: block;
  margin: 0 0 24px;
  color: rgba(32, 36, 42, 0.48);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

.executive-card-body p,
.executive-link-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.executive-card-body em {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: clamp(28px, 4vw, 52px);
  color: #1976d2;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.executive-card-body em::after {
  content: "›";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #0a315f;
  background: #8bc7ff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.executive-team-page {
  padding-top: clamp(150px, 14vw, 220px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.executive-dark {
  min-height: 100vh;
  color: #f7fbff;
  background: #020610;
}

.executive-dark .floating-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 142px;
  padding: 32px 34px;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.98), rgba(6, 22, 40, 0.96));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.executive-dark .brand {
  gap: 14px;
  color: #f7fbff;
}

.executive-dark .brand-symbol {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.executive-dark .brand-text strong {
  color: #f7fbff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.executive-dark .desktop-nav a {
  color: rgba(247, 251, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 800;
}

.executive-dark .desktop-nav a:hover,
.executive-dark .desktop-nav a.is-active {
  color: #f7fbff;
}

.executive-dark .desktop-nav a::after {
  background: #8bc7ff;
}

.executive-dark .desktop-nav .lang-switch {
  color: #8bc7ff;
  border-color: rgba(139, 199, 255, 0.34);
  background: transparent;
}

.executive-dark main {
  background: #020610;
}

.executive-dark .footer {
  color: rgba(247, 251, 255, 0.72);
  background: #020610;
  border-top: 1px solid rgba(139, 199, 255, 0.16);
}

.executive-dark .footer a {
  color: rgba(247, 251, 255, 0.82);
}

.executive-dark .executive-team-page {
  min-height: 100vh;
  padding: 196px 30px 80px;
  background:
    radial-gradient(circle at 74% 14%, rgba(25, 118, 210, 0.22), transparent 26%),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.08) 0 1px, transparent 1px 34px),
    #020610;
}

.executive-dark .team-heading {
  display: none;
}

.executive-dark .executive-team-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1880px, 100%);
  margin-top: 36px;
}

.executive-dark .executive-team-list .executive-card,
.executive-dark .executive-team-list .executive-card:nth-child(even) {
  gap: 20px;
  color: #f7fbff;
}

.executive-dark .executive-team-list .executive-photo {
  aspect-ratio: 1.24 / 1;
  background: #081a30;
}

.executive-dark .executive-team-list .executive-photo::after {
  display: none;
}

.executive-dark .executive-team-list .executive-photo img {
  object-position: 58% 28%;
}

.executive-dark .executive-team-list .executive-card-body {
  position: relative;
  min-height: auto;
  padding-left: 62px;
  border: 0;
}

.executive-dark .executive-team-list .executive-card-body::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 42px;
  height: 42px;
  background:
    radial-gradient(circle at center, #1976d2 0 5px, transparent 6px),
    conic-gradient(from 0deg, #1976d2 0 10deg, transparent 10deg 30deg, #1976d2 30deg 40deg, transparent 40deg 60deg, #1976d2 60deg 70deg, transparent 70deg 90deg, #1976d2 90deg 100deg, transparent 100deg 120deg, #1976d2 120deg 130deg, transparent 130deg 150deg, #1976d2 150deg 160deg, transparent 160deg 180deg, #1976d2 180deg 190deg, transparent 190deg 210deg, #1976d2 210deg 220deg, transparent 220deg 240deg, #1976d2 240deg 250deg, transparent 250deg 270deg, #1976d2 270deg 280deg, transparent 280deg 300deg, #1976d2 300deg 310deg, transparent 310deg 330deg, #1976d2 330deg 340deg, transparent 340deg 360deg);
  border-radius: 50%;
}

.executive-dark .executive-team-list .executive-card-body h3 {
  margin: 0 0 4px;
  color: #f7fbff;
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.executive-dark .executive-team-list .executive-card-body span {
  color: rgba(247, 251, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: 600;
}

.team-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(70px, 8vw, 128px);
}

.team-heading p {
  margin: 0 0 18px;
  color: #1976d2;
  font-size: 13px;
  font-weight: 800;
}

.team-heading h1 {
  margin: 0;
  color: #20242a;
  font-family: "Inter Tight", "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(58px, 8vw, 132px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.executive-team-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.executive-team-list .executive-card,
.executive-team-list .executive-card:nth-child(even) {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.executive-team-list .executive-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.executive-team-list .executive-card:nth-child(even) .executive-photo {
  order: 0;
}

.executive-team-list .executive-card-body {
  display: block;
  padding: 0;
}

.executive-team-list .executive-card-body:first-child {
  order: 0;
  min-height: 96px;
}

.executive-team-list .executive-card-body:last-child {
  order: 2;
  padding-top: 6px;
  border-top: 1px solid rgba(16, 38, 63, 0.16);
}

.executive-team-list .executive-card-body h3 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
}

.executive-team-list .executive-card-body small {
  margin: 0;
  color: rgba(32, 36, 42, 0.48);
  font-size: clamp(15px, 1.2vw, 18px);
}

.executive-team-list .executive-card-body span {
  margin: 0;
  color: #1976d2;
  font-size: 15px;
}

.executive-team-list .executive-photo {
  order: 1;
  aspect-ratio: 16 / 10;
  min-height: auto;
  border-radius: 0;
  box-shadow: none;
}

.executive-team-list .executive-photo img {
  object-position: 58% 22%;
}

.executive-team-list .executive-placeholder {
  border: 1px solid rgba(16, 38, 63, 0.12);
}

.executive-profile-page {
  padding-top: clamp(170px, 15vw, 230px);
}

.executive-dark .page-hero-member {
  display: none;
}

.executive-dark .executive-profile-page {
  min-height: calc(100vh - 142px);
  padding: clamp(190px, 16vw, 260px) 32px 96px;
  background:
    radial-gradient(circle at 74% 14%, rgba(25, 118, 210, 0.2), transparent 26%),
    #020610;
}

.executive-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.executive-detail-text-only {
  grid-template-columns: minmax(0, 1fr);
  width: min(900px, calc(100% - 48px));
}

.executive-dark .executive-detail {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
  width: min(1740px, calc(100% - 120px));
}

.executive-detail-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: auto;
  margin: 0;
  border-radius: 10px;
  background: #eaf4ff;
  box-shadow: 0 28px 74px rgba(7, 21, 36, 0.14);
}

.executive-dark .executive-detail-photo {
  min-height: 560px;
  border-radius: 0;
  background: #081a30;
  box-shadow: none;
}

.executive-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 22%;
}

.executive-detail-photo-okubo {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(90deg, rgba(236, 248, 255, 0.92), rgba(207, 232, 252, 0.72)),
    #eaf4ff;
}

.executive-detail-photo-okubo img {
  object-fit: cover;
  object-position: 32% 24%;
}

.executive-photo-fujisawa img {
  object-position: 64% 24%;
}

.executive-detail-photo-fujisawa img {
  object-position: 62% 26%;
}

.executive-dark .executive-detail-photo img {
  object-position: 58% 28%;
}

.executive-bio {
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff, #f7fbff),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.05) 0 1px, transparent 1px 28px);
  box-shadow: 0 24px 70px rgba(7, 21, 36, 0.08);
}

.executive-dark .executive-bio {
  padding: 0;
  color: #f7fbff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.executive-dark .executive-bio > span {
  margin-bottom: 18px;
  color: rgba(139, 199, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.executive-bio h2 {
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.executive-dark .executive-bio h2 {
  margin-bottom: 22px;
  color: #f7fbff;
  font-size: clamp(46px, 4.8vw, 78px);
  font-weight: 500;
}

.executive-bio p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2.05;
}

.executive-dark .executive-bio p {
  max-width: 860px;
  margin-bottom: 28px;
  color: rgba(247, 251, 255, 0.86);
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.executive-dark .executive-bio .btn {
  color: #020610;
  background: #8bc7ff;
  border-color: #8bc7ff;
  box-shadow: none;
}

.executive-bio .btn {
  margin-top: 18px;
}

.executive-link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px);
}

.command-site .service-list {
  gap: clamp(96px, 12vw, 156px);
}

.command-site .service-list article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff, #f7fbff),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.05) 0 1px, transparent 1px 28px);
  box-shadow: 0 24px 70px rgba(7, 21, 36, 0.08);
}

.command-site .service-list article::before {
  display: none;
}

.command-site .service-mockup,
.command-site .service-list article:nth-child(even) .service-mockup {
  border-radius: 8px;
  transform: none;
  box-shadow:
    16px 18px 0 #dcefff,
    0 30px 70px rgba(7, 21, 36, 0.18);
}

.command-site .service-list article:hover .service-mockup,
.command-site .service-list article:nth-child(even):hover .service-mockup {
  transform: translateY(-8px);
}

.command-site .company-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(2, 6, 16, 0.16), rgba(2, 6, 16, 0.82)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.14) 0 1px, transparent 1px 28px),
    var(--brand-grad);
  box-shadow:
    18px 22px 0 #dcefff,
    0 28px 76px rgba(7, 21, 36, 0.16);
}

.command-site .info-table {
  padding: 12px 28px;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 21, 36, 0.08);
}

.command-site .contact-grid article:first-child {
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.9), rgba(10, 49, 95, 0.68)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 28px),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1200&q=82");
  background-position: center;
  background-size: cover;
}

.command-site .footer {
  background:
    linear-gradient(90deg, #020610, #06172b);
  border-top: 1px solid rgba(139, 199, 255, 0.18);
}

.page-hero-member {
  --page-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=82");
}

.member-preview {
  background:
    linear-gradient(180deg, #fff, #f4f8fc);
}

.member-preview-card {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  min-height: 260px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.9), rgba(10, 49, 95, 0.7)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 32px),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1500&q=82");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(7, 21, 36, 0.2);
}

.member-preview-card::after {
  content: "MEMBER";
  position: absolute;
  right: -12px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(70px, 13vw, 150px);
  font-weight: 800;
  line-height: 0.8;
}

.member-preview-card span,
.member-preview-card strong,
.member-preview-card em {
  position: relative;
  z-index: 1;
}

.member-preview-card span {
  color: #8bc7ff;
  font-size: 13px;
  font-weight: 800;
}

.member-preview-card strong {
  max-width: 720px;
  font-size: clamp(28px, 4.8vw, 52px);
  line-height: 1.34;
}

.member-preview-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 800;
}

.member-intro {
  background:
    linear-gradient(180deg, #fff, #f4f8fc);
}

.member-lead {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 21, 36, 0.08);
}

.member-lead span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.member-lead p {
  margin: 0;
  color: #4c5661;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.7;
}

.member-section {
  background:
    linear-gradient(180deg, #f4f8fc, #fff);
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.member-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94)),
    repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.05) 0 1px, transparent 1px 28px);
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 21, 36, 0.08);
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #1976d2, #8bc7ff);
}

.member-card-primary {
  grid-column: span 2;
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.92), rgba(10, 49, 95, 0.68)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.12) 0 1px, transparent 1px 30px),
    url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1400&q=82");
  background-position: center;
  background-size: cover;
}

.member-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 118, 210, 0.9), rgba(139, 199, 255, 0.56)),
    #0a315f;
  border-radius: 8px;
  box-shadow: 12px 14px 0 #dcefff;
}

.member-card-primary .member-photo {
  box-shadow: 12px 14px 0 rgba(220, 239, 255, 0.22);
}

.member-photo span {
  font-size: 42px;
  font-weight: 800;
}

.member-meta span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.member-card-primary .member-meta span {
  color: #8bc7ff;
}

.member-meta h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.member-meta p,
.member-card > p {
  margin: 0;
  color: #4c5661;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.member-card-primary .member-meta p,
.member-card-primary > p {
  color: rgba(255, 255, 255, 0.78);
}

.member-card > p {
  grid-column: 2;
  align-self: end;
}

.member-page {
  background: #f6f5f3;
}

.member-page main {
  padding: 118px 24px 56px;
}

.member-simple {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 84px 88px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 21, 36, 0.08);
}

.member-simple-heading {
  margin: 0 0 112px;
  text-align: center;
}

.member-simple-heading h1 {
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.member-simple-heading p {
  margin: 0;
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 800;
}

.member-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px;
  width: min(1260px, 100%);
  margin: 0 auto;
}

.member-simple-card {
  min-width: 0;
}

.member-simple-photo {
  display: grid;
  place-items: center;
  min-height: 330px;
  margin-bottom: 34px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(7, 21, 36, 0.08)),
    linear-gradient(135deg, #d7d4cf, #c9c5bf);
  border-radius: 8px;
}

.member-simple-photo span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.member-simple-card h2 {
  margin: 0 0 8px;
  color: #2b2b2b;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.member-simple-card strong {
  display: block;
  margin-bottom: 18px;
  color: #2b2b2b;
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.member-simple-card p {
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.form-page {
  background:
    linear-gradient(180deg, #f4f8fc, #fff 44%),
    #fff;
}

.form-page main {
  padding: 118px 24px 64px;
}

.form-hero {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: 74px 64px 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 6, 16, 0.92), rgba(10, 49, 95, 0.74)),
    repeating-linear-gradient(90deg, rgba(139, 199, 255, 0.14) 0 1px, transparent 1px 30px),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1500&q=82");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(7, 21, 36, 0.16);
}

.form-hero span {
  display: block;
  margin-bottom: 16px;
  color: #8bc7ff;
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.form-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.form-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.form-panel {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 64px;
  background: #fff;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 21, 36, 0.08);
}

.contact-form,
.form-field {
  display: grid;
  gap: 18px;
}

.contact-form {
  gap: 28px;
}

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

.form-field span,
.form-consent span {
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: #20242a;
  font: inherit;
  font-weight: 700;
  background: #f7fafc;
  border: 1px solid rgba(16, 38, 63, 0.16);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field input[type="file"] {
  padding: 13px 16px;
  background: #fff;
  cursor: pointer;
}

.form-field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 16px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, #0a315f, #1976d2);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.form-help {
  margin-top: -8px;
  color: #68727d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: #1976d2;
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.12);
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  accent-color: #1976d2;
}

.form-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.form-actions .white-button {
  color: #101820;
  background: linear-gradient(180deg, #f7fbff, #e8f2fb);
  border: 1px solid rgba(10, 49, 95, 0.16);
  box-shadow: 0 16px 32px rgba(7, 21, 36, 0.12);
}

.form-actions .white-button:hover {
  color: #0a315f;
  background: #fff;
  border-color: rgba(25, 118, 210, 0.32);
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: #1976d2;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #b3261e;
}

.contact-single {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 64px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(7, 21, 36, 0.1);
}

.page-hero > div,
.section-heading,
.contact-single,
.form-panel,
.form-hero,
.service-cta,
.mission-panel,
.careers-box {
  overflow-wrap: normal;
}

.about-company-link {
  padding-top: 0;
}

.about-company-link .text-panel {
  display: grid;
  gap: 16px;
}

.about-company-link .text-panel > span {
  color: #1976d2;
  font-size: 12px;
  font-weight: 800;
}

.about-company-link .text-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.about-company-link .text-panel p {
  max-width: 760px;
  margin: 0 0 8px;
  color: #4c5661;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.about-company-link .white-button {
  width: fit-content;
  min-width: 220px;
  border: 1px solid rgba(16, 38, 63, 0.12);
  box-shadow: 0 16px 34px rgba(7, 21, 36, 0.08);
}

.contact-single::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #1976d2, #8bc7ff);
}

.contact-single span {
  display: block;
  margin-bottom: 18px;
  color: #1976d2;
  font-family: "Inter Tight", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.contact-single h2 {
  margin: 0 0 18px;
  color: #20242a;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-single p {
  max-width: 680px;
  margin: 0 0 34px;
  color: #4c5661;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.company-profile-layout h2,
.contact-single h2,
.form-hero h1,
.form-panel h2,
.thanks-card h1,
.member-card h3,
.service-copy h3 {
  font-family: "Inter Tight", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
}

@media (max-width: 900px) {
  .command-site .hero {
    min-height: auto;
  }

  .command-site .hero-shell {
    padding-top: 126px;
  }

  .command-site .hero-sub {
    display: inline-block;
    margin: 18px 0 16px;
    padding: 6px 10px;
    color: #8bc7ff;
    background: rgba(2, 6, 16, 0.58);
    border: 1px solid rgba(139, 199, 255, 0.2);
    border-radius: 6px;
    line-height: 1.2;
  }

  .command-site .hero h1 {
    font-size: clamp(44px, 13vw, 70px);
  }

  .command-site .page-hero:not(.page-hero-rpo) > div {
    width: calc(100% - 28px);
  }

  .command-site .page-hero:not(.page-hero-rpo) h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .command-site .service-list article {
    padding: 26px;
  }

  .executive-list,
  .executive-detail {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .executive-card,
  .executive-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .executive-card:nth-child(even) .executive-photo {
    order: 0;
  }

  .executive-photo-bio {
    inset: 14px;
    align-content: end;
    padding: 14px 16px;
    opacity: 1;
    transform: none;
    background: rgba(2, 10, 22, 0.68);
  }

  .executive-photo-bio p {
    font-size: 11px;
    line-height: 1.55;
  }

  .executive-team-page {
    padding-top: 132px;
  }

  .executive-dark .floating-header {
    height: 104px;
    padding: 22px 18px;
  }

  .executive-dark .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .executive-dark .brand-text strong {
    font-size: 30px;
  }

  .executive-dark .desktop-nav {
    gap: 18px;
  }

  .executive-dark .desktop-nav a {
    font-size: 15px;
  }

  .executive-dark .executive-team-page {
    padding: 142px 18px 64px;
  }

  .team-heading {
    width: calc(100% - 28px);
    margin-bottom: 58px;
  }

  .executive-team-list {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .executive-dark .executive-team-list {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 22px;
  }

  .executive-dark .executive-team-list .executive-card-body {
    padding-left: 50px;
  }

  .executive-dark .executive-team-list .executive-card-body::before {
    width: 34px;
    height: 34px;
  }

  .executive-dark .executive-profile-page {
    padding: 132px 18px 64px;
  }

  .executive-dark .executive-detail {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .executive-card-body,
  .executive-bio,
  .executive-link-panel {
    padding: 28px 22px;
  }

  .executive-detail-photo {
    min-height: 420px;
  }

  .executive-detail-photo-okubo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .executive-link-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-lead,
  .member-grid,
  .member-card,
  .member-card-primary {
    grid-template-columns: 1fr;
  }

  .member-card-primary,
  .member-card > p {
    grid-column: auto;
  }

  .member-page main {
    padding: 96px 14px 36px;
  }

  .member-simple {
    width: 100%;
    padding: 64px 22px 56px;
  }

  .member-simple-heading {
    margin-bottom: 56px;
  }

  .member-simple-heading h1 {
    font-size: 44px;
  }

  .member-simple-heading p {
    font-size: 16px;
  }

  .member-simple-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 420px;
  }

  .member-simple-photo {
    min-height: 280px;
  }

  .form-page main {
    padding: 96px 14px 36px;
  }

  .form-hero,
  .form-panel {
    width: 100%;
  }

  .form-hero {
    padding: 54px 24px 34px;
  }

  .form-hero h1 {
    font-size: 38px;
  }

  .form-panel {
    padding: 34px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-single {
    padding: 42px 24px;
  }

  .contact-single h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .floating-header,
  .executive-dark .floating-header {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 72px;
    min-height: 72px;
    padding: 0 14px;
    gap: 10px;
    border-radius: 8px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-symbol,
  .executive-dark .brand-symbol {
    width: 28px;
    height: 40px;
  }

  .brand-symbol img {
    max-width: 28px;
    max-height: 40px;
  }

  .brand-text strong,
  .executive-dark .brand-text strong {
    max-width: 160px;
    overflow: hidden;
    font-size: 24px;
    line-height: 1;
    text-overflow: clip;
  }

  .desktop-nav,
  .executive-dark .desktop-nav {
    display: contents;
  }

  .desktop-nav > a,
  .desktop-nav > .nav-item {
    display: none;
  }

  .desktop-nav .lang-switch {
    display: inline-flex;
    order: 2;
    min-width: 44px;
    height: 42px;
    margin-left: auto;
    padding: 0 10px;
    border-color: rgba(25, 118, 210, 0.28);
    background: rgba(237, 247, 255, 0.92);
    color: var(--green);
    font-size: 14px;
  }

  .menu-button {
    display: grid;
    order: 3;
    flex: 0 0 auto;
    width: 54px;
    height: 50px;
    margin-left: 4px;
    background: rgba(237, 247, 255, 0.92);
    border: 1px solid rgba(25, 118, 210, 0.16);
  }

  .menu-button span {
    width: 28px;
    height: 2px;
  }

  .menu-button:hover,
  .menu-button.is-menu-active {
    background: rgba(218, 238, 254, 0.98);
  }

  .nav-choice-menu {
    top: 94px !important;
    left: 12px !important;
    right: 12px;
    width: auto !important;
    max-width: none;
    transform: translateY(-6px);
  }

  .nav-choice-menu nav {
    max-height: calc(100svh - 118px);
    border-color: rgba(105, 169, 224, 0.48);
    box-shadow: 0 18px 42px rgba(7, 21, 36, 0.24);
  }

  .nav-choice-menu nav a,
  .nav-choice-menu nav a.is-parent,
  .nav-choice-menu nav a.is-child {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 72px;
    padding: 15px 18px;
  }

  .nav-choice-menu nav a strong,
  .nav-choice-menu nav a.is-parent strong,
  .nav-choice-menu nav a.is-child strong {
    font-size: 18px;
    line-height: 1.18;
    text-wrap: auto;
  }

  .nav-choice-menu nav a small {
    font-size: 12px;
    line-height: 1.35;
  }

  .nav-choice-menu nav a span {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

  .hero-shell,
  .command-site .hero-shell {
    width: 100%;
    padding: 108px 20px 42px;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  .hero-sub,
  .command-site .hero-sub {
    margin: 0 0 18px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero h1,
  .command-site .hero h1 {
    font-size: clamp(39px, 12vw, 58px);
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-copy {
    margin-top: 28px;
    margin-bottom: 46px;
    padding: 18px 18px 18px 22px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    width: 100%;
    max-width: 320px;
    gap: 14px;
  }

  .page-hero {
    min-height: 420px;
    padding: 118px 20px 56px;
  }

  .page-hero > div,
  .command-site .page-hero:not(.page-hero-rpo) > div {
    width: 100%;
  }

  .page-hero h1,
  .command-site .page-hero:not(.page-hero-rpo) h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    width: 100%;
    max-width: 100%;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .section,
  .page-content,
  .services-section,
  .executive-team-page,
  .executive-dark .executive-team-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.05;
  }

  .executive-team-page {
    padding-top: 116px;
  }

  .team-heading {
    width: 100%;
    margin-bottom: 34px;
  }

  .team-heading p {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .team-heading h1 {
    font-size: clamp(46px, 17vw, 70px);
    line-height: 0.95;
  }

  .executive-team-list {
    width: 100%;
    gap: 42px;
  }

  .executive-team-list .executive-card,
  .executive-team-list .executive-card:nth-child(even) {
    gap: 0;
  }

  .executive-team-list .executive-photo {
    aspect-ratio: 4 / 3;
    width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
  }

  .executive-team-list .executive-photo img {
    object-position: 58% 20%;
  }

  .executive-photo-bio {
    display: none;
  }

  .executive-team-list .executive-card-body:last-child {
    padding-top: 14px;
  }

  .executive-team-list .executive-card-body h3 {
    margin-bottom: 8px;
    font-size: clamp(38px, 13vw, 54px);
    line-height: 1.02;
  }

  .executive-team-list .executive-card-body span {
    font-size: 16px;
  }

  .executive-mobile-bio {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 18px 18px 22px;
    color: #243242;
    background:
      linear-gradient(135deg, rgba(245, 251, 255, 0.98), rgba(226, 242, 255, 0.94)),
      repeating-linear-gradient(90deg, rgba(25, 118, 210, 0.06) 0 1px, transparent 1px 24px);
    border-left: 4px solid #8bc7ff;
    box-shadow: 0 18px 40px rgba(7, 21, 36, 0.08);
  }

  .executive-mobile-bio p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.75;
  }
}
