:root {
  --blue: #0024f4;
  --blue-deep: #0016a7;
  --blue-pale: #eef2ff;
  --ink: #101318;
  --muted: #68707d;
  --line: #dfe4ec;
  --paper: #f7f9fc;
  --white: #ffffff;
  --pointer-x: 55%;
  --pointer-y: 42%;
  --pointer-nx: 0;
  --pointer-ny: 0;
  --scroll-y: 0px;
  --scroll-progress: 0;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans",
    "Yu Gothic", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  background: var(--blue);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  z-index: 95;
  top: 115px;
  right: 17px;
  bottom: 34px;
  width: 1px;
  background: rgba(0, 36, 244, 0.1);
  pointer-events: none;
}

.scroll-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue), #7790ff);
  box-shadow: 0 0 10px rgba(0, 36, 244, 0.22);
  transform: scaleY(var(--scroll-progress));
  transform-origin: top;
}

.section-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 48px));
  min-height: 70px;
  padding: 0 12px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(18, 26, 56, 0.08);
  backdrop-filter: blur(24px) saturate(145%);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 36, 244, 0.22);
}

.brand-logo-crop {
  background-color: var(--blue);
  background-image: url("../images/logo-brand.png");
  background-repeat: no-repeat;
  background-position: center 16%;
  background-size: 58px 58px;
}

.brand-logo-crop i {
  display: none;
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 22px;
  height: 1px;
  left: 7px;
  background: white;
  transform-origin: center;
}

.brand-mark i:nth-child(1) {
  top: 12px;
  transform: rotate(36deg);
}

.brand-mark i:nth-child(2) {
  top: 18px;
  transform: rotate(-36deg);
}

.brand-mark i:nth-child(3) {
  top: 24px;
  transform: rotate(36deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 2px;
  color: #7c8390;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 25px);
}

.desktop-nav a {
  position: relative;
  color: #343943;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--blue);
  transition: right 0.35s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-contact {
  min-width: 142px;
  height: 46px;
  padding: 0 16px 0 19px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 36, 244, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 36, 244, 0.28);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 960px;
  padding: 190px 0 150px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(75, 113, 255, 0.11), transparent 23%),
    linear-gradient(180deg, #fff 0%, #f7f9ff 56%, #eef3ff 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(0, 36, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 36, 244, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, transparent 84%);
}

.hero::after {
  content: "OZS / INTELLIGENCE FIELD — 2026";
  position: absolute;
  z-index: -1;
  left: 34px;
  bottom: 152px;
  color: rgba(0, 36, 244, 0.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 36, 244, 0.28);
  border-radius: 50%;
}

.eyebrow span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  left: 6px;
  top: 6px;
  box-shadow: 0 0 12px var(--blue);
}

.hero h1 {
  margin: 30px 0 30px;
  max-width: 940px;
  font-size: clamp(62px, 7.3vw, 112px);
  font-weight: 660;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em,
.section-intro h2 em,
.media-copy h2 em,
.contact h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-copy {
  margin: 0;
  color: #505765;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 2;
  letter-spacing: 0.025em;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-width: 224px;
  height: 58px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

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

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 38px rgba(0, 36, 244, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 36, 244, 0.3);
}

.button-outline {
  border-color: #cdd4e0;
  background: rgba(255, 255, 255, 0.65);
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.text-link {
  margin-left: 12px;
  padding: 14px 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.intelligence-field {
  position: absolute;
  z-index: 1;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  right: -6vw;
  top: 70px;
  pointer-events: none;
  transform:
    translateY(calc(var(--scroll-y) * 0.05))
    translate3d(
      calc(var(--pointer-nx) * 20px),
      calc(var(--pointer-ny) * 14px),
      0
    );
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brush-echo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%) rotate(-14deg);
  border-radius: 50%;
  opacity: 0.75;
  background:
    conic-gradient(
      from 15deg,
      transparent 0 5%,
      rgba(0, 36, 244, 0.04) 7%,
      rgba(0, 36, 244, 0.16) 18%,
      transparent 34%,
      transparent 48%,
      rgba(0, 36, 244, 0.11) 54%,
      rgba(0, 36, 244, 0.03) 73%,
      transparent 84%
    );
  mask: radial-gradient(circle, transparent 0 54%, black 55% 64%, transparent 66%);
  animation: brush-turn 34s linear infinite;
}

.brush-echo::after {
  content: "";
  position: absolute;
  inset: 55px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 210deg,
      transparent 0 10%,
      rgba(0, 36, 244, 0.15) 13%,
      transparent 39%,
      rgba(0, 36, 244, 0.07) 52%,
      transparent 76%
    );
  mask: radial-gradient(circle, transparent 0 51%, black 52% 60%, transparent 62%);
}

.field-lens {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.58),
    rgba(116, 145, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.18)
  );
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.52),
    0 20px 70px rgba(0, 36, 244, 0.06);
  backdrop-filter: blur(2px);
}

.lens-one {
  width: 248px;
  height: 92px;
  transform: translate(-50%, -50%) rotate(31deg);
  animation: lens-float-one 9s ease-in-out infinite alternate;
}

.lens-two {
  width: 340px;
  height: 114px;
  transform: translate(-50%, -50%) rotate(-28deg);
  animation: lens-float-two 11s ease-in-out infinite alternate;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 164px;
  height: 164px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 35%, white 0 5%, #8ba2ff 7%, var(--blue) 32%, #001793 72%, transparent 73%);
  box-shadow:
    0 0 80px rgba(0, 36, 244, 0.35),
    0 0 180px rgba(0, 36, 244, 0.18);
  animation: breathe 7s ease-in-out infinite;
}

.core::before,
.core::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(0, 36, 244, 0.25);
  border-radius: 44% 56% 52% 48%;
  animation: spin 15s linear infinite;
}

.core::after {
  inset: 17px;
  border-color: rgba(255, 255, 255, 0.55);
  animation-direction: reverse;
  animation-duration: 9s;
}

.core span {
  position: absolute;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 15px white;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0, 36, 244, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(0, 36, 244, 0.8);
}

.orbit-one {
  width: 300px;
  height: 300px;
  animation: spin-center 19s linear infinite;
}

.orbit-two {
  width: 460px;
  height: 460px;
  border-style: dashed;
  animation: spin-center 32s linear infinite reverse;
}

.orbit-three {
  width: 650px;
  height: 650px;
  opacity: 0.6;
  animation: spin-center 48s linear infinite;
}

.field-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 7px rgba(0, 36, 244, 0.06);
}

.field-node::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  left: 7px;
  top: 2px;
  background: linear-gradient(90deg, rgba(0, 36, 244, 0.34), transparent);
  transform-origin: left;
}

.node-one { left: 19%; top: 29%; }
.node-one::after { transform: rotate(24deg); }
.node-two { right: 15%; top: 34%; }
.node-two::after { transform: rotate(150deg); }
.node-three { left: 27%; bottom: 18%; }
.node-three::after { transform: rotate(-34deg); }
.node-four { right: 18%; bottom: 25%; }
.node-four::after { transform: rotate(210deg); }

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0, 36, 244, 0.15);
}

.hero-stat {
  padding: 22px 22px 18px;
  border-right: 1px solid rgba(0, 36, 244, 0.12);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat p {
  margin: 0 0 5px;
  color: var(--blue);
}

.hero-stat strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stat p span {
  margin-left: 4px;
  font-size: 11px;
  font-weight: 750;
}

.hero-stat small {
  color: #737b88;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 35px;
  color: #7c8492;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd2de;
  border-radius: 50%;
}

.scroll-cue span::after {
  content: "↓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.services {
  padding: 150px 0 160px;
}

.section-intro {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 60px;
  padding-bottom: 95px;
}

.section-intro > div {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.section-intro h2,
.media-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.section-intro > div > p,
.media-copy > p:not(.section-index) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 275px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px minmax(280px, 1fr) minmax(320px, 1.08fr) 230px 54px;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  transition: background 0.45s ease, padding 0.45s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, rgba(0, 36, 244, 0.045), transparent 68%);
  transition: opacity 0.45s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-number {
  align-self: start;
  padding-top: 44px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.service-title {
  position: relative;
  z-index: 1;
}

.service-title > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.service-title h3 {
  margin: 13px 0 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 630;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.service-title h3 span {
  display: block;
}

.service-item > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #666e7a;
  font-size: 12px;
  line-height: 2;
}

.service-item > a {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid #cad1dc;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-item > a span {
  position: absolute;
  right: 62px;
  width: max-content;
  color: var(--muted);
  font-size: 10px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item:hover > a {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(6deg);
}

.service-item:hover > a span {
  opacity: 1;
  transform: translateX(0);
}

.service-motif {
  position: relative;
  width: 190px;
  height: 130px;
}

.service-motif i {
  position: absolute;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motif-connect i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: white;
  box-shadow: 0 0 0 6px rgba(0, 36, 244, 0.06);
}

.motif-connect i:nth-child(1) { left: 18px; top: 55px; }
.motif-connect i:nth-child(2) { left: 78px; top: 15px; }
.motif-connect i:nth-child(3) { left: 91px; top: 88px; }
.motif-connect i:nth-child(4) { right: 15px; top: 44px; }
.motif-connect i:nth-child(5) {
  left: 24px;
  top: 59px;
  width: 143px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--blue), rgba(0,36,244,.12), var(--blue));
  box-shadow: none;
  transform: rotate(-5deg);
}

.service-item:hover .motif-connect i:nth-child(2) { transform: translate(10px, 16px); }
.service-item:hover .motif-connect i:nth-child(3) { transform: translate(-6px, -15px); }

.motif-signal i {
  border-radius: 50%;
}

.motif-signal i:nth-child(1) {
  left: 33px;
  top: 23px;
  width: 124px;
  height: 82px;
  border: 1.5px solid transparent;
  border-top-color: var(--blue);
  border-left-color: var(--blue);
  transform: rotate(-21deg);
}

.motif-signal i:nth-child(2) {
  left: 39px;
  top: 27px;
  width: 112px;
  height: 74px;
  border: 1px solid transparent;
  border-right-color: rgba(0, 36, 244, 0.62);
  border-bottom-color: rgba(0, 36, 244, 0.62);
  transform: rotate(13deg);
}

.motif-signal i:nth-child(3) {
  left: 55px;
  top: 37px;
  width: 82px;
  height: 54px;
  border: 1px dashed rgba(0, 36, 244, 0.3);
  transform: rotate(-13deg);
}

.motif-signal i:nth-child(4),
.motif-signal i:nth-child(5) {
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(0, 36, 244, 0.07), 0 0 18px rgba(0, 36, 244, 0.22);
}

.motif-signal i:nth-child(4) {
  left: 135px;
  top: 30px;
}

.motif-signal i:nth-child(5) {
  left: 47px;
  top: 87px;
  width: 4px;
  height: 4px;
  opacity: 0.7;
}

.service-item:hover .motif-signal i:nth-child(1) {
  transform: rotate(-8deg) scale(1.04);
}

.service-item:hover .motif-signal i:nth-child(2) {
  transform: rotate(25deg) scale(0.98);
}

.service-item:hover .motif-signal i:nth-child(3) {
  transform: rotate(-26deg) scale(1.08);
}

.service-item:hover .motif-signal i:nth-child(4) {
  transform: translate(7px, 8px);
}

.service-item:hover .motif-signal i:nth-child(5) {
  transform: translate(-5px, -7px);
}

.motif-spread i {
  top: 50%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 36, 244, 0.12), var(--blue), rgba(0, 36, 244, 0.12));
  transform: translateY(-50%);
  transform-origin: center;
}

.motif-spread i:nth-child(1) {
  left: 38px;
  height: 34px;
  opacity: 0.4;
}

.motif-spread i:nth-child(2) {
  left: 65px;
  height: 68px;
  opacity: 0.68;
}

.motif-spread i:nth-child(3) {
  left: 92px;
  width: 4px;
  height: 108px;
  background: linear-gradient(180deg, rgba(0, 36, 244, 0), var(--blue) 24%, var(--blue) 76%, rgba(0, 36, 244, 0));
  box-shadow: 0 0 16px rgba(0, 36, 244, 0.12);
}

.motif-spread i:nth-child(4) {
  left: 121px;
  height: 72px;
  opacity: 0.68;
}

.motif-spread i:nth-child(5) {
  left: 149px;
  height: 38px;
  opacity: 0.4;
}

.service-item:hover .motif-spread i:nth-child(1) {
  transform: translateY(-50%) scaleY(1.45);
}

.service-item:hover .motif-spread i:nth-child(2) {
  transform: translateY(-50%) scaleY(0.78);
}

.service-item:hover .motif-spread i:nth-child(3) {
  transform: translateY(-50%) scaleY(1.08);
}

.service-item:hover .motif-spread i:nth-child(4) {
  transform: translateY(-50%) scaleY(0.86);
}

.service-item:hover .motif-spread i:nth-child(5) {
  transform: translateY(-50%) scaleY(1.35);
}

.motif-frame i {
  width: 48px;
  height: 34px;
  border: 1px solid rgba(0, 36, 244, 0.6);
  background: rgba(255,255,255,.6);
}
.motif-frame i:nth-child(1) { left: 13px; top: 19px; }
.motif-frame i:nth-child(2) { left: 70px; top: 19px; }
.motif-frame i:nth-child(3) { left: 127px; top: 19px; }
.motif-frame i:nth-child(4) { left: 42px; top: 67px; }
.motif-frame i:nth-child(5) { left: 99px; top: 67px; background: var(--blue); }
.service-item:hover .motif-frame i:nth-child(1) { transform: translate(8px, 7px); }
.service-item:hover .motif-frame i:nth-child(3) { transform: translate(-8px, 7px); }
.service-item:hover .motif-frame i:nth-child(5) { transform: translateY(-5px); }

.track-record {
  position: relative;
  padding: 150px 0 165px;
  background: #061249;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.track-record::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
}

.track-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: 6%;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 95, 255, 0.75), rgba(0, 36, 244, 0.08) 42%, transparent 70%);
  filter: blur(8px);
  animation: drift 10s ease-in-out infinite alternate;
}

.section-index.light {
  color: #8ba2ff;
}

.track-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 60px;
}

.track-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.22;
  letter-spacing: -0.055em;
}

.track-heading h2 span {
  color: #7e98ff;
}

.track-grid {
  margin-top: 105px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.track-stat {
  padding-top: 22px;
}

.stat-line {
  position: relative;
  height: 1px;
  margin-bottom: 44px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.stat-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #7190ff;
  transform: translateX(-100%);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.track-stat.is-visible .stat-line::after {
  transform: translateX(0);
}

.track-stat p {
  margin: 0 0 18px;
}

.track-stat strong {
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.065em;
}

.track-stat p span {
  margin-left: 7px;
  color: #aab9f4;
  font-size: 13px;
  font-weight: 700;
}

.track-stat small {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.media {
  padding: 170px 0 130px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.media-copy .section-index {
  margin-bottom: 50px;
}

.media-copy h2 {
  font-size: clamp(40px, 4.7vw, 67px);
}

.media-copy > p:not(.section-index) {
  margin-top: 38px;
}

.media-copy .text-link {
  display: inline-block;
  margin: 34px 0 0;
}

.text-link.dark {
  color: var(--ink);
}

.media-visual {
  position: relative;
}

.media-image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #dce2ee;
  box-shadow: 0 35px 80px rgba(30, 43, 80, 0.14);
}

.media-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 12, 40, 0.72));
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-image:hover img {
  transform: scale(1.035);
}

.scan-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -10%;
  height: 16%;
  background: linear-gradient(180deg, transparent, rgba(74, 111, 255, 0.2), transparent);
  animation: scan 7s ease-in-out infinite;
}

.media-caption {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.media-caption span {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.media-caption p {
  margin: 0;
  font-size: 11px;
}

.media-orbit {
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  left: -54px;
  bottom: -54px;
  border: 1px solid rgba(0,36,244,.22);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.media-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(0,36,244,.2);
  border-radius: 50%;
}

.media-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  background: var(--blue);
}

.media-marquee {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.marquee-lane {
  position: relative;
  min-height: 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.marquee-lane::before,
.marquee-lane::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.marquee-lane::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(247, 249, 252, 0));
}

.marquee-lane::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), rgba(247, 249, 252, 0));
}

.marquee-label {
  position: absolute;
  z-index: 4;
  left: 34px;
  top: 50%;
  min-width: 180px;
  padding: 11px 18px;
  border: 1px solid rgba(0, 36, 244, 0.14);
  border-radius: 10px;
  background: rgba(247, 249, 252, 0.9);
  color: #252b35;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(27, 39, 76, 0.06);
}

.marquee-label small {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.marquee-label em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.04em;
  vertical-align: 1px;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee-left 68s linear infinite;
}

.marquee-group {
  flex: none;
  padding: 27px 0;
  display: flex;
  align-items: center;
}

.marquee-group span {
  position: relative;
  padding: 0 34px;
  color: #525a67;
  font-size: 14px;
  font-weight: 620;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.programs .marquee-group span {
  font-size: 15px;
  color: #313844;
}

.publications .marquee-track {
  animation-name: marquee-right;
  animation-duration: 78s;
}

.publications .marquee-group span {
  color: #69717e;
  font-size: 12px;
}

.marquee-group span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: 0;
  top: 50%;
  border-radius: 50%;
  background: var(--blue);
}

.marquee-lane:hover .marquee-track {
  animation-play-state: paused;
}

.representative {
  padding: 130px 0 170px;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.profile-visual {
  position: relative;
}

.profile-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 140px 140px 28px 28px;
  overflow: hidden;
  background: #dfe3eb;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,25,125,.18));
  pointer-events: none;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.profile-image:hover img {
  transform: scale(1.025);
}

.profile-code {
  position: absolute;
  right: -20px;
  bottom: 46px;
  width: 220px;
  padding: 15px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(17,26,55,.1);
}

.profile-code span {
  display: block;
  color: var(--blue);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
}

.profile-code span + span {
  margin-top: 6px;
  color: #7a8390;
}

.profile-copy .section-index {
  margin-bottom: 40px;
}

.profile-copy h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 620;
  letter-spacing: -0.055em;
}

.profile-en {
  margin: 7px 0 30px !important;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .1em;
}

.profile-role {
  margin-bottom: 30px !important;
  color: var(--ink) !important;
  font-weight: 650;
}

.profile-copy > p {
  margin: 0 0 18px;
  color: #5c6470;
  font-size: 12px;
  line-height: 2.05;
}

.profile-copy blockquote {
  margin: 35px 0 36px;
  padding: 21px 0 21px 24px;
  border-left: 2px solid var(--blue);
  color: #222831;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.9;
}

.button-outline.dark {
  border-color: #bbc3cf;
  background: transparent;
}

.news {
  padding: 100px 0 140px;
  border-top: 1px solid var(--line);
}

.news-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.news-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.05em;
}

.news-item {
  min-height: 96px;
  padding: 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 90px 1fr 45px;
  align-items: center;
  gap: 22px;
  transition: padding 0.35s ease, color 0.35s ease;
}

.news-item:hover {
  padding-left: 18px;
  color: var(--blue);
}

.news-item time {
  color: #6d7582;
  font-size: 11px;
}

.news-item > span {
  padding: 6px 8px;
  border: 1px solid #d3d9e2;
  border-radius: 5px;
  color: #6d7582;
  font-size: 9px;
  text-align: center;
}

.news-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.news-item b {
  font-weight: 500;
}

.contact {
  position: relative;
  padding: 150px 0 145px;
  background: var(--blue);
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(135deg, #001bd0, #0024f4 48%, #1945ff);
}

.contact-field span {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  right: -90px;
  top: -210px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.contact-field span:nth-child(2) {
  width: 420px;
  height: 420px;
  right: 10px;
  top: -110px;
  border-style: dashed;
  animation-direction: reverse;
}

.contact-field span:nth-child(3) {
  width: 180px;
  height: 180px;
  right: 130px;
  top: 10px;
  background: rgba(255,255,255,.06);
}

.contact-inner h2 {
  margin-top: 44px;
  font-size: clamp(52px, 6.8vw, 94px);
}

.contact-inner h2 em {
  color: #aebcff;
}

.contact-inner > p:not(.section-index) {
  margin: 35px 0 70px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.contact-links {
  border-top: 1px solid rgba(255,255,255,.32);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-links a {
  min-height: 145px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255,255,255,.32);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  transition: background .35s ease, padding .35s ease;
}

.contact-links a:last-child {
  border-right: 0;
}

.contact-links a:hover {
  padding-bottom: 35px;
  background: rgba(255,255,255,.08);
}

.contact-links span {
  font-size: 15px;
  font-weight: 650;
}

.contact-links small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
  font-size: 8px;
  letter-spacing: .15em;
}

.contact-links b {
  font-size: 20px;
  font-weight: 400;
}

footer {
  padding: 85px 0 28px;
  background: #090c12;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .55fr 1fr;
  gap: 90px;
  padding-bottom: 75px;
}

.footer-brand .brand-mark {
  background: white;
  box-shadow: none;
}

.footer-logo {
  width: 138px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(0, 36, 244, 0.2);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-logo:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.footer-brand .brand-mark i {
  background: var(--blue);
}

.footer-brand .brand small {
  color: rgba(255,255,255,.45);
}

.footer-brand > p {
  margin: 36px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.9;
}

.footer-main h3 {
  margin: 0 0 24px;
  color: #7587d0;
  font-size: 8px;
  letter-spacing: .18em;
}

.footer-nav a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  transition: color .25s ease, transform .25s ease;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-address p {
  margin: 0 0 15px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  line-height: 1.9;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,.38);
  font-size: 8px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes brush-turn {
  from { transform: translate(-50%, -50%) rotate(-14deg); }
  to { transform: translate(-50%, -50%) rotate(346deg); }
}

@keyframes lens-float-one {
  from { transform: translate(-54%, -54%) rotate(27deg) scale(0.96); }
  to { transform: translate(-46%, -46%) rotate(35deg) scale(1.04); }
}

@keyframes lens-float-two {
  from { transform: translate(-47%, -52%) rotate(-31deg) scale(1.02); }
  to { transform: translate(-53%, -48%) rotate(-24deg) scale(0.96); }
}

@keyframes spin-center {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes drift {
  from { transform: translate3d(-30px, 0, 0) scale(.95); }
  to { transform: translate3d(30px, 45px, 0) scale(1.08); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@keyframes scan {
  0%, 12% { transform: translateY(-40%); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  88%, 100% { transform: translateY(650%); opacity: 0; }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-contact {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    border: 1px solid #d4dae3;
    border-radius: 11px;
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 80px;
    width: min(320px, calc(100vw - 48px));
    padding: 16px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 16px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 25px 60px rgba(20,30,60,.16);
    backdrop-filter: blur(24px);
  }

  .mobile-menu nav a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--blue);
    font-weight: 700;
  }

  .intelligence-field {
    width: 720px;
    right: -270px;
    opacity: .7;
  }

  .hero-inner {
    width: min(900px, calc(100% - 64px));
  }

  .service-item {
    grid-template-columns: 60px minmax(250px, 1fr) minmax(270px, 1fr) 130px 48px;
    gap: 22px;
  }

  .service-motif {
    transform: scale(.75);
    transform-origin: center;
  }

  .representative {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .hero-inner {
    width: min(100% - 40px, 680px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding-left: 14px;
  }

  .scroll-progress {
    display: none;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .hero {
    min-height: 900px;
    padding-top: 155px;
  }

  .hero h1 {
    margin-top: 25px;
    font-size: clamp(53px, 13vw, 78px);
  }

  .hero-copy br {
    display: none;
  }

  .hero-actions {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    margin-left: 4px;
  }

  .intelligence-field {
    width: 610px;
    right: -360px;
    top: 140px;
    opacity: .42;
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    bottom: 24px;
    width: auto;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    border-bottom: 1px solid rgba(0,36,244,.1);
  }

  .scroll-cue {
    display: none;
  }

  .services {
    padding: 100px 0;
  }

  .section-intro,
  .track-heading,
  .news-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro > div {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro {
    padding-bottom: 65px;
  }

  .service-item {
    min-height: 0;
    padding: 36px 0;
    grid-template-columns: 42px 1fr 48px;
    grid-template-areas:
      "num title link"
      ". desc desc"
      ". motif motif";
    align-items: start;
  }

  .service-number { grid-area: num; padding-top: 3px; }
  .service-title { grid-area: title; }
  .service-item > p { grid-area: desc; margin-top: 10px; }
  .service-motif { grid-area: motif; margin-top: 16px; transform-origin: left center; }
  .service-item > a { grid-area: link; }
  .service-item > a span { display: none; }

  .track-record {
    padding: 110px 0;
  }

  .track-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 65px;
  }

  .media {
    padding: 110px 0 90px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .media-marquee {
    margin-top: 30px;
  }

  .marquee-label {
    left: 16px;
    min-width: 154px;
    padding-inline: 14px;
  }

  .marquee-lane::before,
  .marquee-lane::after {
    width: 48px;
  }

  .representative {
    padding: 80px 0 110px;
    grid-template-columns: 1fr;
  }

  .profile-visual {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .news {
    padding: 75px 0 100px;
  }

  .news-item {
    padding: 22px 4px;
    grid-template-columns: 95px 70px 1fr 20px;
    gap: 12px;
  }

  .contact {
    padding: 110px 0 90px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.32);
  }

  .contact-links a:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 60px 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .section-shell,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 930px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.6vw, 64px);
  }

  .hero-stats {
    left: 16px;
    right: 16px;
  }

  .hero-stat {
    padding: 16px 12px;
  }

  .hero-stat strong {
    font-size: 25px;
  }

  .hero-stat small {
    font-size: 8px;
  }

  .section-intro h2,
  .media-copy h2 {
    font-size: 39px;
  }

  .service-item {
    grid-template-columns: 34px 1fr 44px;
    gap: 12px;
  }

  .service-title h3 {
    font-size: 22px;
  }

  .service-item > p {
    font-size: 11px;
  }

  .service-motif {
    transform: scale(.68);
  }

  .track-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .track-stat {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .track-stat .stat-line {
    grid-column: 1 / -1;
    margin-bottom: 25px;
  }

  .media-image {
    border-radius: 20px;
  }

  .profile-image {
    border-radius: 90px 90px 22px 22px;
  }

  .profile-code {
    right: -4px;
  }

  .news-item {
    grid-template-columns: 1fr auto;
  }

  .news-item time,
  .news-item > span {
    grid-row: 1;
  }

  .news-item p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .news-item b {
    display: none;
  }

  .contact h2 {
    font-size: 52px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .marquee-group:nth-child(2) {
    display: none;
  }
}

/* Shared subpage system */
.page-hero {
  position: relative;
  min-height: 600px;
  padding: 210px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(59, 99, 255, .12), transparent 23%),
    linear-gradient(180deg, #fff 0%, #f2f5ff 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(0,36,244,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,36,244,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, transparent);
}

.page-hero-orbit {
  position: absolute;
  right: -130px;
  top: 70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0,36,244,.12);
  border-radius: 50%;
  animation: spin 34s linear infinite;
}

.page-hero-orbit::before,
.page-hero-orbit::after {
  content: "";
  position: absolute;
  inset: 74px;
  border: 1px dashed rgba(0,36,244,.18);
  border-radius: 50%;
}

.page-hero-orbit::after { inset: 165px; background: radial-gradient(circle, rgba(0,36,244,.15), transparent 66%); }
.page-hero-orbit span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 20px var(--blue); }
.page-hero-orbit span:first-child { left: 50%; top: -4px; }
.page-hero-orbit span:last-child { right: 22px; bottom: 110px; width: 5px; height: 5px; }

.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { margin: 32px 0 28px; font-size: clamp(64px, 8vw, 118px); font-weight: 650; line-height: 1; letter-spacing: -.065em; }
.page-lead { width: min(620px, 100%); margin: 0; color: #5d6673; font-size: 15px; line-height: 2; }

.sub-contact { position: relative; padding: 95px 0; background: var(--blue); color: white; overflow: hidden; }
.sub-contact::after { content: ""; position: absolute; width: 460px; height: 460px; right: -90px; top: -200px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,255,255,.08); }
.sub-contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr 220px; gap: 50px; align-items: end; }
.sub-contact small { color: #b8c5ff; font-size: 8px; letter-spacing: .2em; }
.sub-contact h2 { margin: 13px 0 0; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.045em; }
.sub-contact p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.9; }
.sub-contact a { height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 13px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; transition: background .3s, color .3s, transform .3s; }
.sub-contact a:hover { background: white; color: var(--blue); transform: translateY(-3px); }

/* Services */
.service-detail-list { padding: 140px 0 160px; }
.service-detail { min-height: 560px; padding: 80px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.service-detail:nth-child(even) .service-detail-copy { order: 2; }
.service-detail:nth-child(even) .detail-image { order: 1; }
.detail-no { display: block; margin-bottom: 25px; color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .18em; }
.service-detail h2 { margin: 0 0 28px; font-size: clamp(34px, 4vw, 54px); line-height: 1.25; letter-spacing: -.05em; }
.service-detail h2 span { display: block; }
.service-detail-copy > p { margin: 0; color: #626b77; font-size: 13px; line-height: 2.1; }
.service-detail ul { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-detail li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); color: #434a55; font-size: 11px; }
.service-detail li::before { content: ""; position: absolute; left: 2px; top: 50%; width: 6px; height: 6px; border: 1px solid var(--blue); border-radius: 50%; transform: translateY(-50%); }
.detail-image { position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden; box-shadow: 0 28px 70px rgba(27,40,80,.13); }
.detail-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(0,20,100,.35)); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.detail-image:hover img { transform: scale(1.035); }
.detail-image span { position: absolute; z-index: 2; right: 20px; bottom: 18px; color: white; font-size: 8px; font-weight: 700; letter-spacing: .16em; }

/* Profile */
.profile-detail { padding: 140px 0; display: grid; grid-template-columns: minmax(360px,.8fr) minmax(520px,1.2fr); gap: clamp(70px,9vw,140px); align-items: start; }
.profile-detail-image { position: sticky; top: 120px; }
.profile-detail-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 160px 160px 30px 30px; }
.profile-detail-image > span { display: block; margin-top: 15px; color: var(--blue); font-size: 8px; font-weight: 750; letter-spacing: .17em; text-align: right; }
.profile-detail-copy h2 { margin: 28px 0 0; font-size: clamp(52px,6vw,80px); letter-spacing: -.06em; }
.profile-detail-copy > small { color: var(--blue); font-size: 11px; letter-spacing: .12em; }
.profile-detail-copy > p { margin: 0 0 20px; color: #59616d; font-size: 12px; line-height: 2.15; }
.profile-detail-copy .profile-titles { margin: 30px 0 !important; color: var(--ink); font-weight: 650; }
.profile-detail-copy blockquote { margin: 42px 0 0; padding: 26px 0 26px 28px; border-left: 2px solid var(--blue); font-size: 16px; font-weight: 650; line-height: 1.9; }
.profile-detail-copy blockquote small { display: block; margin-top: 12px; color: #76808d; font-size: 10px; font-weight: 500; }
.career-section { padding: 130px 0; background: #071349; color: white; }
.career-section h2,.books-section h2 { margin: 30px 0 60px; font-size: clamp(44px,5vw,70px); letter-spacing: -.05em; }
.career-list { border-top: 1px solid rgba(255,255,255,.16); }
.career-item { padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.16); display: grid; grid-template-columns: 55px 170px 1fr; gap: 30px; align-items: start; }
.career-item > span { color: #8299ff; font-size: 9px; }
.career-item time { color: rgba(255,255,255,.55); font-size: 10px; }
.career-item h3 { margin: -4px 0 8px; font-size: 18px; font-weight: 600; }
.career-item p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.8; }
.books-section { padding: 130px 0 150px; }
.book-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 34px; }
.book-grid article { min-height: 350px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center; background: white; }
.book-grid img { width: 100%; max-height: 280px; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0,0,0,.12)); }
.book-grid small { color: var(--blue); font-size: 9px; letter-spacing: .15em; }
.book-grid h3 { margin: 14px 0 0; font-size: 19px; line-height: 1.7; }
.profile-external { margin-top: 34px; display: flex; gap: 12px; justify-content: flex-end; }
.profile-external a { padding: 13px 18px; border: 1px solid var(--line); border-radius: 10px; font-size: 10px; font-weight: 700; }

/* Company */
.company-layout { padding: 140px 0 160px; display: grid; grid-template-columns: 330px 1fr; gap: 100px; align-items: start; }
.company-brand-panel { position: sticky; top: 120px; }
.company-brand-panel img { width: 100%; border-radius: 28px; box-shadow: 0 28px 65px rgba(0,36,244,.18); }
.company-brand-panel p { margin: 24px 0 0; color: #9aa2ae; font-size: 10px; font-weight: 750; letter-spacing: .22em; line-height: 1.8; }
.company-table { margin: 0; border-top: 1px solid var(--ink); }
.company-table > div { min-height: 82px; padding: 25px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 170px 1fr; gap: 35px; }
.company-table dt { color: var(--blue); font-size: 10px; font-weight: 750; }
.company-table dd { margin: 0; white-space: pre-line; color: #4f5864; font-size: 12px; line-height: 2; }
.company-table a { color: var(--blue); }

/* Works */
.works-summary { margin-top: -55px; position: relative; z-index: 3; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); background: white; border-radius: 22px; box-shadow: 0 24px 70px rgba(22,35,77,.12); overflow: hidden; }
.works-summary > div { padding: 34px 38px; border-right: 1px solid var(--line); }
.works-summary > div:last-child { border: 0; }
.works-summary strong { color: var(--blue); font-size: 46px; letter-spacing: -.055em; }
.works-summary span { margin-left: 5px; color: var(--blue); font-size: 11px; font-weight: 700; }
.works-summary small { display: block; margin-top: 6px; color: #77808d; font-size: 9px; }
.works-sections { padding: 140px 0 160px; }
.works-block + .works-block { margin-top: 150px; }
.works-heading { display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: end; margin-bottom: 55px; }
.works-heading h2 { margin: 0; font-size: clamp(34px,4.5vw,60px); letter-spacing: -.05em; }
.works-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.work-card { position: relative; min-height: 220px; padding: 30px 32px; border: 1px solid var(--line); border-radius: 20px; background: white; overflow: hidden; transition: transform .35s, border-color .35s, box-shadow .35s; }
.work-card:hover { transform: translateY(-4px); border-color: rgba(0,36,244,.4); box-shadow: 0 20px 50px rgba(25,38,78,.09); }
.work-card small { color: var(--blue); font-size: 8px; font-weight: 750; letter-spacing: .12em; }
.work-card h3 { margin: 20px 45px 15px 0; font-size: 19px; line-height: 1.55; }
.work-card p { margin: 0; color: #6b7480; font-size: 11px; line-height: 1.9; }
.work-card > span { position: absolute; right: 25px; top: 24px; color: var(--blue); }

/* Contact */
.contact-page-grid { padding: 140px 0 95px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.contact-page-card { position: relative; min-height: 440px; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: white; display: flex; flex-direction: column; transition: transform .4s, border-color .4s, box-shadow .4s; overflow: hidden; }
.contact-page-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; top: -80px; border: 1px solid rgba(0,36,244,.15); border-radius: 50%; transition: transform .5s; }
.contact-page-card:hover { transform: translateY(-7px); border-color: rgba(0,36,244,.38); box-shadow: 0 24px 60px rgba(25,38,78,.1); }
.contact-page-card:hover::after { transform: scale(1.3); }
.contact-page-card > span { color: #a0a8b4; font-size: 9px; }
.contact-page-card > small { margin-top: 70px; color: var(--blue); font-size: 8px; letter-spacing: .16em; }
.contact-page-card h2 { margin: 17px 0; font-size: 27px; letter-spacing: -.04em; }
.contact-page-card p { margin: 0; color: #6a7380; font-size: 11px; line-height: 1.95; }
.contact-page-card b { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: 11px; }
.contact-page-card b i { float: right; color: var(--blue); font-style: normal; }
.phone-panel { margin-bottom: 140px; padding: 55px; border-radius: 24px; background: #071349; color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.phone-panel small { color: #8da2ff; font-size: 8px; letter-spacing: .15em; }
.phone-panel h2 { margin: 15px 0 0; font-size: 32px; }
.phone-panel p { margin: 0 0 14px; color: rgba(255,255,255,.55); font-size: 10px; }
.phone-panel a { display: block; padding: 8px 0; font-size: 15px; }
.phone-panel div:last-child > small { display: block; margin-top: 15px; color: rgba(255,255,255,.48); }

/* Membership */
.auth-shell { padding: 130px 0 150px; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; }
.auth-visual { position: relative; border-radius: 30px 0 0 30px; background: var(--blue); overflow: hidden; display: grid; place-items: center; color: white; }
.auth-visual::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; animation: spin 27s linear infinite; }
.auth-visual span { position: absolute; width: 260px; height: 95px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transform: rotate(35deg); }
.auth-visual span:nth-child(2) { transform: rotate(-30deg); }
.auth-visual strong { position: relative; z-index: 2; font-size: 32px; line-height: 1.05; letter-spacing: -.04em; }
.auth-panel { padding: 70px 80px; border: 1px solid var(--line); border-left: 0; border-radius: 0 30px 30px 0; background: white; }
.auth-panel h2 { margin: 22px 0 40px; font-size: 45px; letter-spacing: -.05em; }
.auth-panel label { display: block; margin-bottom: 24px; color: #545d69; font-size: 10px; font-weight: 700; }
.auth-panel input:not([type=checkbox]) { width: 100%; height: 54px; margin-top: 9px; padding: 0 15px; border: 1px solid #ccd3de; border-radius: 10px; background: var(--paper); font: inherit; }
.auth-check { display: flex !important; align-items: center; gap: 8px; }
.auth-panel button { width: 100%; height: 58px; padding: 0 18px; border: 0; border-radius: 11px; background: var(--blue); color: white; display: flex; align-items: center; justify-content: space-between; font-weight: 700; cursor: pointer; }
.auth-links { margin-top: 22px; display: flex; justify-content: space-between; gap: 15px; }
.auth-links a { color: var(--blue); font-size: 10px; }
.auth-shell.compact { min-height: 590px; }
.join-layout { padding: 130px 0 150px; display: grid; grid-template-columns: 1fr 290px; gap: 80px; align-items: start; }
.join-main > p { color: #626b77; font-size: 12px; line-height: 2; }
.membership-card { margin: 50px 0; padding: 55px; border-radius: 26px; background: var(--blue); color: white; }
.membership-card small { color: #bdc8ff; font-size: 8px; letter-spacing: .18em; }
.membership-card h2 { margin: 20px 0 10px; font-size: 44px; }
.membership-card p { color: rgba(255,255,255,.7); }
.membership-card strong { display: block; margin: 25px 0; font-size: 24px; }
.membership-card a { display: inline-block; padding: 13px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 10px; font-size: 10px; font-weight: 700; }
.join-note { position: sticky; top: 120px; padding: 28px; border: 1px solid #efc75e; border-radius: 18px; background: #fffaf0; }
.join-note span { color: #9a7100; font-size: 8px; font-weight: 750; letter-spacing: .15em; }
.join-note p { margin: 15px 0 0; color: #74633a; font-size: 11px; line-height: 1.8; }

/* Policies */
.policy-page,.legal-page { padding: 120px 0 150px; width: min(920px, calc(100% - 64px)); }
.policy-intro { margin: 0 0 65px; padding: 35px; border-left: 2px solid var(--blue); background: white; color: #535c68; font-size: 12px; line-height: 2; }
.policy-page section { padding: 40px 0; border-top: 1px solid var(--line); }
.policy-page h2 { margin: 0 0 20px; font-size: 22px; }
.policy-page section p { margin: 0; white-space: pre-line; color: #616b77; font-size: 12px; line-height: 2; }
.policy-date { margin-top: 40px; color: #7d8590; font-size: 10px; text-align: right; }
.legal-page dl { margin: 0; border-top: 1px solid var(--ink); }
.legal-page dl > div { padding: 27px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 230px 1fr; gap: 40px; }
.legal-page dt { color: var(--blue); font-size: 10px; font-weight: 750; }
.legal-page dd { margin: 0; color: #57606c; font-size: 12px; line-height: 1.9; }

@media (max-width: 900px) {
  .page-hero { min-height: 510px; padding: 170px 0 80px; }
  .page-hero-orbit { right: -280px; opacity: .6; }
  .sub-contact-inner { grid-template-columns: 1fr; gap: 25px; align-items: start; }
  .sub-contact a { width: 220px; }
  .service-detail,.profile-detail,.company-layout { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-copy,.service-detail:nth-child(even) .detail-image { order: initial; }
  .profile-detail-image,.company-brand-panel { position: relative; top: auto; width: min(470px,100%); margin-inline: auto; }
  .profile-detail { gap: 65px; }
  .company-layout { gap: 70px; }
  .book-grid,.works-grid,.contact-page-grid { grid-template-columns: 1fr; }
  .works-heading { grid-template-columns: 1fr; gap: 22px; }
  .book-grid article { grid-template-columns: 150px 1fr; }
  .contact-page-card { min-height: 340px; }
  .contact-page-card > small { margin-top: 35px; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { min-height: 320px; border-radius: 25px 25px 0 0; }
  .auth-panel { border-left: 1px solid var(--line); border-top: 0; border-radius: 0 0 25px 25px; }
  .join-layout { grid-template-columns: 1fr; }
  .join-note { position: relative; top: auto; order: -1; }
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: 53px; }
  .service-detail-list,.profile-detail,.works-sections,.contact-page-grid,.join-layout { padding-top: 80px; padding-bottom: 90px; }
  .service-detail { padding: 55px 0; gap: 38px; }
  .detail-image { border-radius: 19px; }
  .career-item { grid-template-columns: 35px 1fr; gap: 18px; }
  .career-item time { grid-column: 2; }
  .career-item div { grid-column: 2; }
  .book-grid article { grid-template-columns: 105px 1fr; padding: 22px; gap: 20px; min-height: 270px; }
  .book-grid h3 { font-size: 14px; }
  .company-layout { padding-top: 80px; padding-bottom: 90px; }
  .company-brand-panel { width: 230px; }
  .company-table > div,.legal-page dl > div { grid-template-columns: 1fr; gap: 10px; }
  .works-summary { margin-top: -30px; grid-template-columns: 1fr; }
  .works-summary > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .works-block + .works-block { margin-top: 95px; }
  .phone-panel { margin-bottom: 90px; padding: 32px 24px; grid-template-columns: 1fr; gap: 35px; }
  .auth-shell { padding-top: 80px; }
  .auth-panel { padding: 45px 24px; }
  .auth-visual { min-height: 240px; }
  .membership-card { padding: 35px 24px; }
  .membership-card h2 { font-size: 34px; }
  .policy-page,.legal-page { width: calc(100% - 32px); padding-top: 80px; }
  .policy-intro { padding: 25px; }
}

/* Members dashboard preview */
.member-preview-link {
  margin-top: 22px; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border: 1px solid rgba(20, 35, 70, .12);
  border-radius: 10px; background: rgba(246, 248, 255, .9); color: var(--ink);
  font-size: 11px; font-weight: 700; transition: .3s ease;
}
.member-preview-link:hover { color: var(--blue); border-color: rgba(15, 43, 255, .35); transform: translateY(-2px); }
.member-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(circle at 78% 20%, rgba(58, 102, 255, .52), transparent 34%), #07113b;
  padding: 156px 0 72px;
}
.member-hero-grid {
  position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: linear-gradient(to right, transparent, #000 35%, #000);
}
.member-hero-inner { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.member-hero h1 { margin: 12px 0 16px; font-size: clamp(42px, 6vw, 78px); letter-spacing: -.05em; }
.member-hero p:not(.section-index) { margin: 0; color: rgba(255,255,255,.68); }
.member-status {
  min-width: 210px; padding: 24px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07); backdrop-filter: blur(18px);
}
.member-status span, .member-status small { display: block; font-size: 10px; letter-spacing: .15em; color: rgba(255,255,255,.56); }
.member-status strong { display: block; margin: 10px 0 4px; color: #7da1ff; font-size: 28px; letter-spacing: .06em; }
.member-dashboard { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(36px, 6vw, 90px); padding-top: 72px; padding-bottom: 110px; }
.member-sidebar { align-self: start; position: sticky; top: 110px; border-top: 2px solid var(--ink); }
.member-sidebar p { margin: 0; padding: 16px 0; color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.member-sidebar a { display: flex; justify-content: space-between; gap: 12px; padding: 15px 0; border-top: 1px solid rgba(20,35,70,.1); color: var(--muted); font-size: 12px; }
.member-sidebar a.active, .member-sidebar a:hover { color: var(--blue); }
.member-welcome { padding-bottom: 34px; border-bottom: 1px solid rgba(20,35,70,.12); }
.member-welcome small { color: var(--blue); font-weight: 800; letter-spacing: .18em; }
.member-welcome h2 { margin: 12px 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }
.member-welcome p { margin: 0; color: var(--muted); }
.member-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.member-content-card {
  position: relative; min-height: 300px; padding: 24px; overflow: hidden;
  border: 1px solid rgba(20,35,70,.1); background: #fff; color: var(--ink);
  box-shadow: 0 20px 60px rgba(7,17,59,.06); transition: .35s ease;
}
.member-content-card::after {
  content: ""; position: absolute; right: -55px; bottom: -75px; width: 170px; height: 170px;
  border: 28px solid rgba(15,43,255,.055); border-radius: 50%;
}
.member-content-card > span { color: rgba(15,43,255,.25); font-size: 46px; font-weight: 800; letter-spacing: -.06em; }
.member-content-card small { display: block; margin-top: 40px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.member-content-card h3 { margin: 8px 0 12px; font-size: 21px; }
.member-content-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.member-content-card b { position: absolute; z-index: 1; left: 24px; bottom: 22px; display: flex; gap: 10px; font-size: 10px; letter-spacing: .18em; }
.member-content-card i { color: var(--blue); font-style: normal; }
.member-content-card:hover { color: #fff; border-color: var(--blue); background: var(--blue); transform: translateY(-6px); box-shadow: 0 26px 70px rgba(15,43,255,.25); }
.member-content-card:hover small, .member-content-card:hover p, .member-content-card:hover i { color: rgba(255,255,255,.76); }
.member-prototype-note { margin: 24px 0 0; color: var(--muted); font-size: 11px; }

@media (max-width: 900px) {
  .member-hero-inner { align-items: start; flex-direction: column; }
  .member-status { width: 100%; }
  .member-dashboard { grid-template-columns: 1fr; }
  .member-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  .member-sidebar p { grid-column: 1 / -1; }
  .member-card-grid { grid-template-columns: 1fr; }
  .member-content-card { min-height: 250px; }
}
