:root {
  --ink: #09236a;
  --ink-soft: #395070;
  --muted: #7d8da9;
  --blue: #2f7cff;
  --blue-deep: #0f45da;
  --card: rgba(255, 255, 255, 0.72);
  --line: rgba(18, 52, 110, 0.08);
  --shadow: 0 24px 70px rgba(48, 103, 191, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Immersive hero video window */
.hero-video {
  position: relative;
  z-index: 0;
  align-self: center;
  width: min(620px, 44vw);
  aspect-ratio: 1.12;
  margin-top: 32px;
  transform: translate3d(26px, -24px, 0);
}

.hero-video::before {
  position: absolute;
  z-index: -2;
  inset: 7% -7% -9% 5%;
  content: "";
  border-radius: 42% 58% 54% 46% / 46% 42% 58% 54%;
  background:
    radial-gradient(circle at 72% 36%, rgba(86, 147, 255, 0.72), transparent 42%),
    radial-gradient(circle at 24% 78%, rgba(173, 125, 255, 0.58), transparent 46%);
  filter: blur(38px);
  opacity: 0.58;
  transform: scale(1.04);
  animation: hero-video-aura 8s ease-in-out infinite alternate;
}

.hero-video__window {
  --video-tilt-x: 0deg;
  --video-tilt-y: 0deg;
  --video-light-x: 72%;
  --video-light-y: 18%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 38px 84px 42px 72px;
  background: rgba(16, 34, 72, 0.34);
  box-shadow:
    0 34px 90px rgba(34, 74, 147, 0.24),
    0 4px 18px rgba(47, 106, 202, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: perspective(1100px) rotateX(var(--video-tilt-x)) rotateY(var(--video-tilt-y));
  transform-origin: center;
  transition: transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 550ms ease;
  will-change: transform;
}

.hero-video__window::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--video-light-x) var(--video-light-y),
    rgba(255, 255, 255, 0.2),
    transparent 26%
  );
  mix-blend-mode: screen;
  opacity: 0.78;
}

.hero-video:hover .hero-video__window {
  box-shadow:
    0 42px 108px rgba(34, 74, 147, 0.3),
    0 8px 24px rgba(47, 106, 202, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-video__media {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03) brightness(0.94);
  transform: scale(1.025);
  transition: filter 800ms ease, transform 1600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-video:hover .hero-video__media {
  filter: saturate(1.04) contrast(1.04) brightness(0.98);
  transform: scale(1.045);
}

.hero-video__wash {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 22, 54, 0.2) 0%, transparent 28%, transparent 52%, rgba(6, 19, 47, 0.72) 100%),
    linear-gradient(104deg, rgba(110, 166, 255, 0.18), transparent 38%, rgba(142, 102, 255, 0.1));
}

.hero-video__grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.55px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
  opacity: 0.18;
}

.hero-video__topbar,
.hero-video__foreground {
  position: absolute;
  z-index: 4;
  right: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-video__topbar {
  top: 23px;
}

.hero-video__signal {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 12px rgba(7, 21, 53, 0.3);
}

.hero-video__signal > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94f5d1;
  box-shadow: 0 0 0 4px rgba(148, 245, 209, 0.13), 0 0 14px rgba(148, 245, 209, 0.8);
  animation: hero-video-signal 2s ease-in-out infinite;
}

.hero-video__sound,
.hero-video__toggle {
  display: inline-grid;
  cursor: pointer;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 30, 62, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 260ms var(--ease), background 260ms ease, border-color 260ms ease;
}

.hero-video__sound {
  grid-auto-flow: column;
  gap: 9px;
  min-width: 80px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero-video__sound:hover,
.hero-video__sound:focus-visible,
.hero-video__toggle:hover,
.hero-video__toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.hero-video__sound:focus-visible,
.hero-video__toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(129, 184, 255, 0.34);
}

.hero-video__sound-icon {
  display: flex;
  height: 12px;
  gap: 2px;
  align-items: flex-end;
}

.hero-video__sound-icon i {
  display: block;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  animation: hero-video-eq 900ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

.hero-video__sound-icon i:nth-child(1) {
  height: 5px;
}

.hero-video__sound-icon i:nth-child(2) {
  height: 11px;
  animation-delay: -300ms;
}

.hero-video__sound-icon i:nth-child(3) {
  height: 7px;
  animation-delay: -600ms;
}

.hero-video.has-sound .hero-video__sound-icon i {
  animation-play-state: running;
}

.hero-video__foreground {
  bottom: 25px;
}

.hero-video__caption {
  display: grid;
  gap: 7px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(3, 15, 42, 0.42);
}

.hero-video__caption span {
  color: rgba(226, 239, 255, 0.68);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero-video__caption strong {
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-video__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.hero-video__toggle span,
.hero-video__toggle span::after {
  display: block;
  width: 3px;
  height: 15px;
  content: "";
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(6, 20, 52, 0.32);
}

.hero-video__toggle span {
  transform: translateX(-3px);
}

.hero-video__toggle span::after {
  transform: translateX(6px);
}

.hero-video.is-paused .hero-video__toggle span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(2px);
}

.hero-video.is-paused .hero-video__toggle span::after {
  display: none;
}

.hero-video__orbit {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(117, 156, 235, 0.2);
  border-radius: 50%;
}

.hero-video__orbit--one {
  inset: -7% -8%;
  transform: rotate(-13deg);
}

.hero-video__orbit--two {
  inset: 5% -14%;
  border-color: rgba(149, 113, 226, 0.16);
  transform: rotate(18deg);
}

@keyframes hero-video-aura {
  to {
    opacity: 0.76;
    transform: translate3d(-2%, 1%, 0) scale(1.1);
  }
}

@keyframes hero-video-signal {
  50% {
    opacity: 0.58;
    box-shadow: 0 0 0 7px rgba(148, 245, 209, 0.05), 0 0 19px rgba(148, 245, 209, 0.72);
  }
}

@keyframes hero-video-eq {
  to {
    height: 3px;
  }
}

@media (max-width: 1180px) {
  .hero-video {
    justify-self: center;
    width: min(620px, 100%);
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-video {
    width: 100%;
    aspect-ratio: 0.96;
  }

  .hero-video__window {
    border-radius: 25px 54px 27px 46px;
  }

  .hero-video__topbar,
  .hero-video__foreground {
    right: 18px;
    left: 18px;
  }

  .hero-video__topbar {
    top: 17px;
  }

  .hero-video__foreground {
    bottom: 18px;
  }

  .hero-video__caption strong {
    font-size: 17px;
  }
}

@media (max-width: 430px) {
  .hero-video__caption span {
    display: none;
  }

  .hero-video__sound {
    min-width: 36px;
    width: 36px;
    padding: 0;
  }

  .hero-video__sound > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-video__window,
  .hero-video__media {
    transform: none !important;
  }

  .hero-video::before,
  .hero-video__signal > span,
  .hero-video__sound-icon i {
    animation: none !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 788px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 18% 80%, rgba(169, 222, 255, 0.76), transparent 34%),
    radial-gradient(ellipse at 82% 28%, rgba(69, 142, 255, 0.58), transparent 32%),
    radial-gradient(ellipse at 12% 14%, rgba(154, 126, 245, 0.34), transparent 32%),
    radial-gradient(ellipse at 54% 12%, rgba(137, 111, 242, 0.36), transparent 31%),
    radial-gradient(ellipse at 84% 82%, rgba(247, 192, 102, 0.2), transparent 27%),
    linear-gradient(115deg, #ffffff 0%, #fafcff 42%, #e8f2ff 100%);
  background-size: 145% 145%, 150% 150%, 150% 150%, 145% 145%, 145% 145%, 100% 100%;
  animation: hero-gradient-breath 18s cubic-bezier(0.45, 0.05, 0.2, 1) infinite;
  animation-delay: -5s;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -38% -30% -32%;
  z-index: -4;
  background:
    radial-gradient(ellipse at 22% 86%, rgba(179, 227, 255, 0.46), transparent 31%),
    radial-gradient(ellipse at 54% 10%, rgba(148, 118, 244, 0.24), transparent 27%),
    radial-gradient(ellipse at 88% 78%, rgba(249, 191, 104, 0.16), transparent 25%),
    linear-gradient(102deg, transparent 0 18%, rgba(255, 255, 255, 0.88) 31%, rgba(222, 241, 255, 0.5) 42%, transparent 58%),
    linear-gradient(125deg, rgba(173, 218, 255, 0.42), transparent 34% 58%, rgba(77, 124, 236, 0.36));
  filter: blur(34px);
  transform: translate3d(-6%, 0, 0) scale(1.04);
  animation: light-breath 14s cubic-bezier(0.45, 0.05, 0.2, 1) infinite;
  animation-delay: -5s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 68%);
  opacity: 0.24;
}

.hero__glow,
.hero__veil,
.hero__aurora,
.hero__vortex,
.hero__beam {
  position: absolute;
  pointer-events: none;
  z-index: -3;
}

.hero__glow {
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.68;
}

.hero__glow--one {
  width: 760px;
  height: 430px;
  left: -5%;
  bottom: -95px;
  background: rgba(98, 199, 255, 0.82);
  animation: glow-drift-one 5.2s ease-in-out infinite alternate;
}

.hero__glow--two {
  width: 850px;
  height: 560px;
  right: -4%;
  top: 48px;
  background: rgba(99, 160, 255, 0.82);
  animation: glow-drift-two 6s ease-in-out infinite alternate;
}

.hero__glow--three {
  width: 520px;
  height: 360px;
  left: 42%;
  top: 44%;
  background: rgba(232, 247, 255, 0.82);
  filter: blur(36px);
  opacity: 0.34;
  animation: glow-pulse-center 17s cubic-bezier(0.45, 0.05, 0.2, 1) infinite alternate;
  animation-delay: -5s;
}

.hero__glow--four {
  width: 650px;
  height: 440px;
  left: 30%;
  top: -130px;
  background: rgba(133, 107, 238, 0.68);
  filter: blur(48px);
  opacity: 0.24;
  animation: glow-drift-four 18s ease-in-out infinite;
  animation-delay: -5s;
}

.hero__glow--five {
  width: 720px;
  height: 400px;
  right: -12%;
  bottom: -118px;
  background: rgba(248, 185, 88, 0.5);
  filter: blur(52px);
  opacity: 0.12;
  animation: glow-drift-five 18s ease-in-out infinite;
  animation-delay: -5s;
}

.hero__glow--six {
  width: 560px;
  height: 420px;
  top: -82px;
  left: -14%;
  background: rgba(157, 123, 246, 0.52);
  filter: blur(54px);
  opacity: 0.16;
  animation: glow-drift-six 18s ease-in-out infinite;
  animation-delay: -5s;
}

.hero__veil {
  inset: -26% -28%;
  z-index: -2;
  background:
    linear-gradient(108deg, transparent 14%, rgba(255, 255, 255, 0.78) 32%, rgba(218, 239, 255, 0.46) 42%, transparent 61%),
    radial-gradient(circle at 60% 58%, rgba(255, 255, 255, 0.7), transparent 33%);
  mix-blend-mode: screen;
  opacity: 0.52;
  filter: blur(20px);
  animation: veil-flow 16s cubic-bezier(0.45, 0.05, 0.2, 1) infinite;
  animation-delay: -5s;
}

.hero__aurora {
  inset: -18% -10% -12%;
  z-index: -2;
  background:
    radial-gradient(ellipse at 18% 76%, rgba(132, 211, 255, 0.42), transparent 32%),
    radial-gradient(ellipse at 76% 30%, rgba(89, 144, 255, 0.42), transparent 34%),
    radial-gradient(ellipse at 48% 20%, rgba(151, 120, 244, 0.28), transparent 28%),
    radial-gradient(ellipse at 80% 76%, rgba(248, 189, 98, 0.2), transparent 26%),
    linear-gradient(96deg, transparent 0 26%, rgba(255, 255, 255, 0.56) 44%, transparent 62%);
  filter: blur(28px) saturate(1.12);
  opacity: 0.78;
  transform: translate3d(0, 0, 0) scale(1.05);
  animation: aurora-flow 18s ease-in-out infinite;
  animation-delay: -5s;
}

.hero__vortex {
  left: 50%;
  top: 48%;
  z-index: -2;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(46px) saturate(1.14);
  opacity: 0.5;
  will-change: transform, opacity;
  -webkit-mask-image: radial-gradient(
    circle,
    transparent 0 7%,
    rgba(0, 0, 0, 0.52) 18%,
    #000 43%,
    rgba(0, 0, 0, 0.38) 56%,
    transparent 69%
  );
  mask-image: radial-gradient(
    circle,
    transparent 0 7%,
    rgba(0, 0, 0, 0.52) 18%,
    #000 43%,
    rgba(0, 0, 0, 0.38) 56%,
    transparent 69%
  );
}

.hero__vortex--outer {
  width: max(1280px, 92vw);
  height: max(1280px, 92vw);
  background:
    radial-gradient(ellipse at 36% 30%, rgba(255, 255, 255, 0.68), transparent 23%),
    radial-gradient(ellipse at 64% 62%, rgba(69, 176, 255, 0.64), transparent 30%),
    radial-gradient(ellipse at 42% 74%, rgba(111, 209, 255, 0.42), transparent 28%),
    conic-gradient(
      from 18deg,
      rgba(54, 165, 255, 0.58) 0deg,
      rgba(175, 229, 255, 0.68) 32deg,
      rgba(255, 255, 255, 0.58) 58deg,
      rgba(88, 190, 255, 0.5) 98deg,
      rgba(142, 214, 255, 0.62) 132deg,
      rgba(255, 255, 255, 0.54) 164deg,
      rgba(76, 170, 255, 0.52) 214deg,
      rgba(221, 246, 255, 0.66) 266deg,
      rgba(95, 198, 255, 0.56) 314deg,
      rgba(54, 165, 255, 0.58) 360deg
  );
  animation: vortex-roll-outer 26s linear infinite;
  animation-delay: -5s;
}

.hero__vortex--inner {
  width: max(820px, 60vw);
  height: max(820px, 60vw);
  opacity: 0.52;
  filter: blur(36px) saturate(1.2);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse at 35% 64%, rgba(74, 185, 255, 0.72), transparent 25%),
    radial-gradient(ellipse at 58% 38%, rgba(255, 255, 255, 0.62), transparent 22%),
    radial-gradient(ellipse at 72% 58%, rgba(99, 202, 255, 0.46), transparent 28%),
    conic-gradient(
      from 206deg,
      rgba(255, 255, 255, 0.58) 0deg,
      rgba(64, 172, 255, 0.58) 42deg,
      rgba(164, 226, 255, 0.7) 84deg,
      rgba(255, 255, 255, 0.52) 120deg,
      rgba(72, 189, 255, 0.66) 168deg,
      rgba(214, 246, 255, 0.62) 214deg,
      rgba(83, 169, 255, 0.5) 266deg,
      rgba(255, 255, 255, 0.56) 312deg,
      rgba(64, 172, 255, 0.58) 360deg
  );
  animation: vortex-roll-inner 22s linear infinite;
  animation-delay: -5s;
}

.hero__beam {
  z-index: -3;
  top: -28%;
  bottom: -20%;
  width: 36vw;
  min-width: 440px;
  border-radius: 999px;
  mix-blend-mode: screen;
  filter: blur(44px);
  opacity: 0;
}

.hero__beam--one {
  left: -38vw;
  background: linear-gradient(
    92deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 18%,
    rgba(255, 255, 255, 0.24) 46%,
    rgba(159, 211, 255, 0.18) 62%,
    transparent 100%
  );
  animation: beam-sweep-one 18s ease-in-out infinite;
}

.hero__beam--two {
  right: -34vw;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(177, 221, 255, 0.15) 26%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(188, 213, 255, 0.14) 68%,
    transparent 100%
  );
  animation: beam-sweep-two 22s ease-in-out infinite;
}

/* The visible window omits the original first and final second, then retraces. */
.hero,
.hero::before,
.hero__glow,
.hero__veil,
.hero__aurora,
.hero__vortex--outer,
.hero__vortex--inner,
.hero__beam {
  animation-duration: 7s;
  animation-direction: alternate;
  animation-delay: 0s;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 62px;
  padding: 14px 24px 0 16px;
}

.site-header--shared {
  background: transparent;
}

.header-menu {
  display: contents;
}

.mobile-menu-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
  min-height: 35px;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.86;
}

.brand img {
  width: 164px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.25vw, 38px);
  margin-left: clamp(28px, 4vw, 68px);
  color: #173461;
}

.primary-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 1px;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.primary-nav__item::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.primary-nav__item:hover,
.primary-nav__item:focus-visible,
.primary-nav__item.is-active {
  color: var(--blue-deep);
}

.primary-nav__item:hover::after,
.primary-nav__item:focus-visible::after,
.primary-nav__item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav__item:focus-visible {
  outline: 2px solid rgba(47, 124, 255, 0.45);
  outline-offset: 7px;
}

.primary-nav__item:active {
  transform: translateY(1px);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: #0b2356;
  font-size: 14px;
  line-height: 1;
}

.text-link,
.language-toggle,
.footer-column a,
.record-link,
.social-links a {
  transition:
    color 180ms var(--ease),
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.text-link:hover,
.language-toggle:hover,
.footer-column a:hover,
.record-link:not(.record-link--static):hover {
  color: var(--blue);
}

.record-link--static {
  cursor: default;
  pointer-events: none;
  transition: none;
}

.text-link.is-active {
  color: var(--blue);
  font-weight: 600;
}

.text-link:active,
.language-toggle:active,
.footer-column a:active,
.record-link:not(.record-link--static):active,
.action-card:active,
.social-links a:active {
  transform: translateY(1px);
}

.language-toggle {
  cursor: pointer;
  color: #7c8cad;
  background: transparent;
  padding: 0;
}

.app-page {
  background: #fff;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb__sep {
  user-select: none;
  color: var(--muted);
}

.breadcrumb__current {
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── Content page shell ── */
.content-page {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 80px;
}

.content-page__body {
  margin-top: 48px;
  margin-bottom: 48px;
  min-height: 320px;
}

.content-page__text {
  margin-top: 0;
  margin-bottom: 24px;
}

/* ── Legal documents ── */
.legal-page > h1 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.legal-page .content-page__body {
  max-width: 960px;
  margin-top: 44px;
}

.legal-page .content-page__heading {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-page .content-page__heading p {
  margin: 0;
  text-indent: 0;
}

.legal-page .content-page__text {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.legal-page .content-page__text p {
  margin: 0 0 1em;
  text-align: justify;
  text-indent: 2em;
  text-justify: inter-ideograph;
}

.legal-page .content-page__text h2,
.legal-page .content-page__text h3 {
  color: var(--ink);
  text-indent: 0;
  text-wrap: balance;
}

.legal-page .content-page__text h2 {
  margin: 2.2em 0 0.75em;
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.legal-page .content-page__text h3 {
  margin: 1.7em 0 0.65em;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.legal-page .content-page__text ul,
.legal-page .content-page__text ol {
  margin: 0 0 1.25em;
  padding-left: 1.65em;
  line-height: 1.85;
}

.legal-page .content-page__text li + li {
  margin-top: 0.45em;
}

.legal-page .content-page__text a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-color: rgba(15, 69, 218, 0.3);
  text-underline-offset: 0.18em;
}

@media (max-width: 760px) {
  .legal-page > h1 {
    margin-top: 24px;
    font-size: 32px;
    line-height: 1.28;
  }

  .legal-page .content-page__body {
    margin-top: 36px;
  }

  .legal-page .content-page__heading {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.7;
  }

  .legal-page .content-page__text {
    font-size: 15px;
    line-height: 1.85;
  }

  .legal-page .content-page__text h2 {
    margin-top: 2em;
    font-size: 21px;
    line-height: 1.5;
  }

  .legal-page .content-page__text h3 {
    margin-top: 1.6em;
    font-size: 17px;
    line-height: 1.55;
  }
}

/* ── Changelog ── */
.changelog {
  max-width: 900px;
}

.changelog__intro {
  margin-bottom: 44px;
}

.changelog__eyebrow {
  margin: 0 0 12px;
  color: #5b7bbb;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.changelog__intro h2 {
  margin: 0;
  color: #18315b;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.changelog__intro > p:last-child {
  margin: 14px 0 0;
  color: #66758b;
  font-size: 16px;
}

.changelog__timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog__timeline::before {
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 13px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, #7cb5ff 0%, rgba(124, 181, 255, 0.2) 100%);
}

.changelog__item {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 28px;
}

.changelog__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(80, 137, 229, 0.52);
  border-radius: 50%;
  background: rgba(248, 252, 255, 0.96);
  box-shadow: 0 0 0 6px rgba(116, 178, 255, 0.1);
}

.changelog__marker i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f8bed;
  box-shadow: 0 0 16px rgba(79, 139, 237, 0.72);
}

.changelog__card {
  position: relative;
  padding: 28px 30px;
  border: 1px solid rgba(117, 151, 205, 0.22);
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(239, 247, 255, 0.76));
  box-shadow: 0 18px 50px rgba(69, 105, 158, 0.1);
}

.changelog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c7c91;
  font-size: 13px;
  font-weight: 680;
}

.changelog__meta span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #3267b4;
  background: rgba(93, 150, 237, 0.12);
}

.changelog__card h3 {
  margin: 15px 0 8px;
  color: #203d6b;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.changelog__card p {
  margin: 0;
  color: #586a82;
  line-height: 1.8;
}

.changelog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.changelog__tags span {
  padding: 5px 10px;
  border: 1px solid rgba(104, 144, 204, 0.22);
  border-radius: 999px;
  color: #4f6f9d;
  background: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 650;
}

.changelog__download {
  position: absolute;
  right: 30px;
  top: 90px;
  padding: 8px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #4f7bf0, #3267b4);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: opacity 0.2s;
}

.changelog__download:hover {
  opacity: 0.88;
}

@media (max-width: 600px) {
  .changelog__download {
    position: static;
    display: inline-block;
    margin-top: 14px;
  }


  .changelog__intro {
    margin-bottom: 32px;
  }

  .changelog__item {
    gap: 16px;
  }

  .changelog__card {
    padding: 22px 20px;
    border-radius: 18px;
  }
}

/* ── Product layout ── */
.product-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-downloads {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 28px;
}

.product-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(47, 124, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.05), rgba(137, 111, 242, 0.03));
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease);
}

.product-download:hover {
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.12), rgba(137, 111, 242, 0.08));
  border-color: rgba(47, 124, 255, 0.35);
  transform: scale(1.04);
}

.product-download svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.8;
}

/* ── Product cards ── */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-card {
  position: relative;
  width: min(640px, 100%);
  max-width: 640px;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 40px 46px 38px;
  border: 1px solid rgba(11, 35, 86, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(41, 83, 145, 0.08);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 124, 255, 0.14);
  box-shadow: 0 28px 72px rgba(41, 83, 145, 0.14);
}

.product-card__info {
  width: 100%;
  min-width: 0;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.product-card__footer .product-downloads {
  margin-top: 0;
}

.product-card__pricing-link {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
  border: 0;
  color: #2f70ba;
  background: transparent;
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 200ms var(--ease),
    background-color 200ms var(--ease),
    border-color 200ms var(--ease),
    transform 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.product-card__pricing-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms var(--ease);
}

.product-card__pricing-link:hover,
.product-card__pricing-link:focus-visible {
  color: #245fa8;
  background: transparent;
  box-shadow: none;
  outline: none;
  transform: translateY(-2px);
}

.product-card__pricing-link:hover svg,
.product-card__pricing-link:focus-visible svg {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .product-card {
    min-height: auto;
    padding: 30px 26px 28px;
  }

  .product-card__footer {
    gap: 16px;
    margin-top: 28px;
  }
}

.product-card__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__title-row {
  display: flex;
  align-items: center;
  margin: 0 0 26px;
}

.product-card__avatar {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  isolation: isolate;
  margin-right: 14px;
}

.product-card__avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 30deg,
    rgba(115, 185, 255, 0.6),
    rgba(255, 255, 255, 0.7),
    rgba(149, 118, 239, 0.5),
    rgba(191, 233, 255, 0.3),
    rgba(115, 185, 255, 0.6)
  );
  pointer-events: none;
}

.product-card__avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(15, 69, 218, 0.1);
}

.product-card__title-row h2 {
  margin: 0;
  flex: 1;
}

.product-card__version {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.product-card__info h2 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.3;
}

.product-card__info p {
  margin: 10px 0 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-card__download {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 18px 56px 18px 28px;
  border: 1px solid rgba(47, 124, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.06), rgba(137, 111, 242, 0.04));
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease);
}

.product-card__download:hover {
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.12), rgba(137, 111, 242, 0.08));
  border-color: rgba(47, 124, 255, 0.35);
  transform: scale(1.03);
}

.product-card__platform-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(66, 134, 230, 0.78);
  transform: translateY(-50%);
}

.product-card__platform-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  filter: drop-shadow(0 3px 6px rgba(47, 124, 255, 0.14));
}

/* ── Download section ── */
.download-section {
  margin-top: 48px;
}

.download-section h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
}

.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.content-page__heading {
  margin-top: 24px;
  margin-bottom: 48px;
}

/* Shared one-time scroll reveal for content pages. Content remains visible
   without JavaScript, then gains motion only after the observer is bound. */
[data-scroll-reveal].is-motion-ready {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 680ms var(--reveal-ease) var(--page-reveal-delay, 0ms),
    transform 680ms var(--reveal-ease) var(--page-reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-scroll-reveal].is-motion-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (max-width: 760px) {
  [data-scroll-reveal].is-motion-ready {
    transform: translate3d(0, 18px, 0);
    transition-duration: 480ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal].is-motion-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Jobs page ---- */
.jobs-page {
  padding-bottom: 54px;
}

.jobs-page__body {
  margin-top: 22px;
  margin-bottom: 0;
}

.jobs-hero {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  align-items: center;
  overflow: hidden;
}

.jobs-hero__copy {
  position: relative;
  z-index: 5;
  padding: 14px 0 20px;
}

.jobs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: #122552;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.jobs-hero__eyebrow svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #4b78ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.jobs-hero__eyebrow-line {
  display: block;
  width: 72px;
  height: 4px;
  margin: 32px 0 31px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2d6cff, #9971ff);
}

.jobs-hero h1 {
  position: relative;
  z-index: 6;
  margin: 0;
  color: #1646c7;
  font-size: clamp(36px, 4.625vw, 71px);
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 0.98;
  white-space: nowrap;
  background: linear-gradient(105deg, #1041c7 8%, #276ff5 47%, #9a61ef 93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jobs-hero h1 span {
  display: inline-block;
  margin-left: 0.06em;
  color: #8364f2;
  font-size: 0.35em;
  vertical-align: top;
  -webkit-text-fill-color: #8364f2;
}

.jobs-hero__script {
  margin: 7px 0 28px;
  color: #9a87ff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(43px, 4.1vw, 66px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-5deg);
  transform-origin: left center;
}

.jobs-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 16px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #1854e8;
  background: rgba(68, 113, 255, 0.1);
  font-size: 18px;
  font-weight: 600;
}

.jobs-hero__status span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2d6dff;
  box-shadow: 0 0 12px rgba(45, 109, 255, 0.55);
}

.jobs-hero__description {
  margin: 0;
  color: #13275a;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.75;
}

.jobs-hero__notice {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin-top: 27px;
  padding-top: 27px;
  border-top: 2px dashed rgba(118, 112, 255, 0.55);
}

.jobs-hero__notice p {
  margin: 0;
  color: #1a2c58;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
}

.jobs-hero__notice-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #755af4;
  background: radial-gradient(circle at 35% 28%, #fff 0, #f0edff 46%, #ddd8ff 100%);
}

.jobs-hero__notice-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.jobs-hero__art {
  position: relative;
  z-index: 1;
  min-height: 560px;
  isolation: isolate;
}

.jobs-hero__art::before {
  position: absolute;
  z-index: -2;
  top: 1%;
  right: -19%;
  width: min(51vw, 730px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle at 43% 56%, rgba(255,255,255,.7) 0 16%, rgba(233,238,255,.8) 43%, rgba(216,223,255,.42) 70%, transparent 71%);
}

.jobs-orbit {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 3%;
  width: 83%;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(117, 118, 255, 0.62);
  border-radius: 50%;
  transform: rotate(-23deg);
}

.jobs-orbit i {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 25%, #e9f2ff 0, #6398ff 35%, #3d6ee6 68%, #8b64e9);
  box-shadow: 0 8px 17px rgba(45, 91, 218, 0.26);
}

.jobs-orbit i:nth-child(1) { top: 12%; left: 13%; }
.jobs-orbit i:nth-child(2) { top: 5%; right: 7%; width: 25px; height: 25px; background: radial-gradient(circle at 28% 25%, #eedcff, #9d69ec 65%); }
.jobs-orbit i:nth-child(3) { right: 8%; bottom: 20%; width: 18px; height: 18px; }

.jobs-card {
  position: absolute;
  width: clamp(150px, 18vw, 230px);
  aspect-ratio: 0.71;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 27px;
  box-shadow: 0 22px 38px rgba(97, 109, 207, 0.22), inset 0 1px 0 rgba(255,255,255,.8);
}

.jobs-card--back {
  z-index: 0;
  top: 19%;
  right: 20%;
  background: linear-gradient(135deg, rgba(254,255,255,.75), rgba(211,204,255,.6));
  transform: rotate(15deg);
}

.jobs-card--front {
  z-index: 2;
  top: 29%;
  right: 34%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(198,213,255,.88), rgba(104,116,239,.7) 54%, rgba(177,129,252,.64));
  transform: rotate(8deg);
}

.jobs-card--front::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(125deg, rgba(255,255,255,.55), transparent 35% 60%, rgba(255,255,255,.24));
}

.jobs-card--front svg {
  position: relative;
  z-index: 1;
  width: 61%;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,.3));
}

.jobs-podium {
  position: absolute;
  right: 6%;
  bottom: 5%;
  width: min(95%, 500px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(215,224,255,.88));
  box-shadow: 0 21px 25px rgba(80, 115, 220, .23), inset 0 9px 10px rgba(255,255,255,.95);
}

.jobs-podium--large {
  z-index: 0;
  height: 105px;
}

.jobs-podium--small {
  z-index: 1;
  right: 16%;
  bottom: 16%;
  width: min(75%, 390px);
  height: 90px;
  background: linear-gradient(180deg, #fff, #dce5ff);
  box-shadow: 0 15px 21px rgba(85, 102, 217, .25), inset 0 -8px 0 #b797ff;
}

.jobs-hero__dots {
  position: absolute;
  top: 1%;
  right: 2%;
  width: 76px;
  height: 76px;
  background-image: radial-gradient(circle, #8192ff 0 3px, transparent 4px);
  background-size: 22px 22px;
  opacity: .78;
}

.jobs-values {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
}

.jobs-values li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 38px;
  color: #182c5c;
  font-size: 18px;
  font-weight: 500;
}

.jobs-values li:first-child { padding-left: 0; }
.jobs-values li + li { border-left: 1px solid rgba(111, 133, 219, .3); }

.jobs-values svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: #4e71fa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

@media (max-width: 900px) {
  .jobs-hero { grid-template-columns: 1fr 0.82fr; min-height: 540px; }
  .jobs-hero h1 { font-size: clamp(33px, 5.3vw, 50px); }
  .jobs-hero__art { min-height: 470px; }
  .jobs-values li { padding: 0 22px; }
}

@media (max-width: 680px) {
  .jobs-page { width: min(100% - 36px, 1320px); }
  .jobs-hero { display: block; min-height: auto; overflow: visible; }
  .jobs-hero__copy { padding-top: 0; }
  .jobs-hero__eyebrow { font-size: 20px; }
  .jobs-hero__eyebrow svg { width: 32px; height: 32px; }
  .jobs-hero__eyebrow-line { margin: 22px 0 24px; }
  .jobs-hero h1 { font-size: clamp(31px, 9vw, 50px); letter-spacing: 0.04em; }
  .jobs-hero__script { margin-bottom: 24px; font-size: 48px; }
  .jobs-hero__notice { margin-top: 23px; padding-top: 22px; gap: 15px; }
  .jobs-hero__notice-icon { width: 48px; height: 48px; }
  .jobs-hero__art { min-height: 390px; margin: 8px -12px -12px; }
  .jobs-hero__art::before { right: -32%; width: 620px; }
  .jobs-card--back { right: 18%; }
  .jobs-card--front { right: 34%; }
  .jobs-podium { right: 4%; }
  .jobs-podium--small { right: 15%; }
  .jobs-values { flex-wrap: wrap; gap: 13px 0; padding-top: 16px; }
  .jobs-values li { padding: 0 16px; font-size: 16px; }
  .jobs-values li:first-child { padding-left: 0; }
  .jobs-values svg { width: 31px; height: 31px; }
}

.soft-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 18%, rgba(192, 221, 255, 0.78), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(179, 229, 255, 0.78), transparent 34%),
    linear-gradient(118deg, #fff 0%, #f8fcff 48%, #eaf4ff 100%);
}

.soft-hero::before {
  content: "";
  position: absolute;
  inset: -24% -20%;
  z-index: -4;
  background:
    conic-gradient(
      from 120deg at 52% 52%,
      rgba(77, 176, 255, 0.2),
      rgba(255, 255, 255, 0.78),
      rgba(130, 209, 255, 0.24),
      rgba(255, 255, 255, 0.72),
      rgba(77, 176, 255, 0.2)
    );
  filter: blur(42px);
  animation: page-vortex 14s linear infinite;
}

.soft-hero__mist {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(34px);
}

.soft-hero__mist--one {
  width: 640px;
  height: 380px;
  left: -120px;
  bottom: 20px;
  background: rgba(89, 199, 255, 0.42);
  animation: soft-mist-one 9s ease-in-out infinite alternate;
}

.soft-hero__mist--two {
  width: 740px;
  height: 460px;
  right: -160px;
  top: 96px;
  background: rgba(116, 169, 255, 0.34);
  animation: soft-mist-two 11s ease-in-out infinite alternate;
}

.soft-hero--plain {
  background: #fff;
}

.soft-hero--plain::before {
  display: none;
}

.soft-hero--plain .soft-hero__mist {
  display: none;
}

.auth-hero {
  min-height: 820px;
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 430px);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 104px auto 96px;
}

.auth-layout--compact {
  grid-template-columns: minmax(320px, 500px) minmax(320px, 420px);
}

.auth-layout--single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 104px auto 96px;
}

.auth-copy {
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.auth-copy h1,
.detail-article h1 {
  margin: 0;
  color: #08256c;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.auth-copy p:not(.eyebrow),
.article-lead {
  margin: 24px 0 0;
  color: #52637d;
  font-size: 17px;
  line-height: 1.85;
}

.auth-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.auth-benefits span {
  padding: 10px 14px;
  border: 1px solid rgba(47, 124, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #26507f;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(41, 93, 176, 0.08);
  backdrop-filter: blur(14px);
}

.form-panel {
  border: 1px solid rgba(11, 35, 86, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(41, 93, 176, 0.15);
  backdrop-filter: blur(20px);
}

.form-header {
  padding: 36px 36px 0;
  text-align: center;
}

.form-header__title {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
}

.form-header__subtitle {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.xl-form {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.xl-form label {
  display: grid;
  gap: 9px;
  color: #1c2e52;
  font-size: 14px;
  font-weight: 600;
}

.xl-form input[type="text"],
.xl-form input[type="email"],
.xl-form input[type="password"],
.xl-form input[type="date"],
.xl-form select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(11, 35, 86, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 0 15px;
  outline: 0;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.xl-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7d8da9 50%),
    linear-gradient(135deg, #7d8da9 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  color: #52637d;
}

.xl-form input[type="date"] {
  cursor: pointer;
  color: #52637d;
}

.xl-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.xl-form input:focus,
.xl-form select:focus {
  border-color: rgba(47, 124, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(47, 124, 255, 0.12);
}

.register-panel {
  min-height: 520px;
}

.register-form {
  gap: 19px;
  padding: 36px;
}

.register-step {
  display: none;
  gap: 24px;
}

.register-step[data-register-step="1"] {
  gap: 12px;
}

.register-step[data-register-step="2"] {
  gap: 15px;
}

.register-step[data-register-step="3"] {
  gap: 12px;
}

/* 验证码：等宽 + 加大字距，6 位数字一眼能数清，也便于对照邮件里的码。 */
.register-step[data-register-step="3"] input[name="code"] {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 20px;
  letter-spacing: 0.32em;
  text-align: center;
}

.register-step.is-active {
  display: grid;
  animation: form-step-in 360ms var(--ease) both;
}

.input-shell {
  position: relative;
}

.input-shell > img {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-shell input {
  padding-left: 46px !important;
}

.password-shell input {
  padding-right: 50px !important;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 50px !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  cursor: pointer;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 180ms var(--ease), opacity 180ms var(--ease);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: rgba(47, 124, 255, 0.08);
}

.password-toggle img {
  position: static;
  width: 22px;
  height: 22px;
  transform: none;
}

.icon-field.is-error input,
.xl-form input.is-error,
.xl-form select.is-error {
  border-color: rgba(229, 72, 77, 0.7);
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.1);
}

.field-error {
  min-height: 0;
  color: #d84b52;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.optional-fields {
  display: grid;
  gap: 15px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.register-actions {
  display: grid;
  gap: 15px;
  margin-top: 5px;
  padding-top: 2px;
}

.register-agreement a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 重发验证码：次要动作，不能和「完成注册」抢注意力，但仍要是货真价实的按钮
   （足够的点击区域、可见的禁用态）—— 冷却期间它会被禁用，用户得看得出来。 */
.ghost-button {
  cursor: pointer;
  height: 46px;
  border: 1px solid rgba(47, 124, 255, 0.32);
  border-radius: 12px;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  transition: background 180ms var(--ease), opacity 180ms var(--ease);
}

.ghost-button:hover:not(:disabled) {
  background: rgba(47, 124, 255, 0.08);
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.register-submit:disabled,
.register-submit.is-disabled {
  cursor: not-allowed;
  background: #c9d4e4;
  box-shadow: none;
  transform: none;
}

.register-submit[hidden],
[data-register-next][hidden] {
  display: none;
}

.form-message.is-error {
  background: rgba(216, 75, 82, 0.1);
  color: #c73842;
}

.form-message.is-success {
  background: rgba(47, 124, 255, 0.09);
  color: #1d5ed8;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: #52637d !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.auth-link {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
}

.auth-link--disabled {
  cursor: not-allowed;
  color: #8a9ab2;
  opacity: 0.82;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #52637d;
  font-size: 14px;
}

.form-row a,
.form-note a,
.back-link {
  color: var(--blue);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.form-row a:hover,
.form-note a:hover,
.back-link:hover {
  opacity: 0.72;
}

.primary-button {
  cursor: pointer;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f7cff, #0f45da);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(47, 124, 255, 0.28);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(47, 124, 255, 0.34);
}

.form-note,
.form-message {
  margin: 0;
  color: #7d8da9;
  font-size: 14px;
  line-height: 1.6;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(47, 124, 255, 0.09);
  color: #1d5ed8;
}

.form-message.is-visible {
  display: block;
}

@keyframes form-step-in {
  0% {
    opacity: 0;
    transform: translate3d(14px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.detail-hero {
  min-height: 980px;
  padding-bottom: 90px;
}

.detail-article {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  margin: 86px auto 0;
  padding: 54px 58px 60px;
  border: 1px solid rgba(11, 35, 86, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(41, 93, 176, 0.12);
  backdrop-filter: blur(20px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 700;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 28px 0 42px;
  color: #8a9ab5;
  font-size: 14px;
}

.article-body {
  color: #34445f;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: #09235f;
  font-size: 24px;
  line-height: 1.3;
}

.article-body p {
  margin: 0;
  color: #52637d;
  font-size: 16px;
  line-height: 1.95;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: rgba(47, 124, 255, 0.08);
  color: #123a7c;
  font-size: 20px;
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid rgba(47, 124, 255, 0.24);
  outline-offset: 4px;
  border-radius: 8px;
}

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

/* 蜜罐字段：对所有人隐藏，包括读屏软件 —— 与 .visually-hidden 正好相反，
   那个是「视觉上藏起来但仍念给读屏用户」，用在这里会让读屏用户听到一个
   他不该填的字段、填了就被判成机器人。所以两者不能复用同一个类。

   用移到屏幕外而不是 display:none：有些脚本专门跳过 display:none 的字段，
   因为那是最明显的蜜罐特征。配合标签上的 aria-hidden / tabindex="-1" /
   autocomplete="off"（后者尤其要紧，浏览器自动填充会把真实用户判成机器人）。 */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 712px) minmax(360px, 530px);
  gap: clamp(68px, 8vw, 112px);
  align-items: center;
  width: min(1356px, calc(100% - 48px));
  margin: 120px auto 0;
}

.hero__copy {
  padding-left: 4px;
}

.notice {
  position: relative;
  display: block;
  width: min(608px, 100%);
  margin: 0 0 54px;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #8192b6;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: left;
  transition:
    color 260ms var(--ease),
    transform 260ms var(--ease),
    text-shadow 260ms var(--ease);
}

.notice:hover,
.notice:focus-visible,
.notice.is-active {
  color: #2f61ad;
  text-shadow: 0 0 18px rgba(100, 163, 255, 0.24);
  transform: translateX(4px);
}

.notice:focus-visible {
  outline: 2px solid rgba(47, 124, 255, 0.42);
  outline-offset: 6px;
  border-radius: 4px;
}

.notice.is-active::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 78px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(47, 124, 255, 0));
}

html[lang="zh-CN"] .notice {
  line-height: 1.72;
}

.hero-title {
  margin: 0;
  width: min(440px, 100%);
  line-height: 0;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.9));
}

.hero-title img {
  width: 100%;
  height: auto;
}

.hero-subtitle {
  display: inline-flex;
  min-height: 1.24em;
  align-items: center;
  margin: 28px 0 76px;
  color: #2b415e;
  font-size: clamp(25px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.24;
  transition: opacity 900ms var(--ease), filter 900ms var(--ease);
}

.hero-subtitle.is-fading {
  opacity: 0;
  filter: blur(3px);
}

.hero-subtitle.is-vanishing {
  animation: typewriter-breathe-away 1.7s var(--ease) forwards;
}

.typewriter-text {
  white-space: nowrap;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 5px;
  border-radius: 999px;
  background: #2f7cff;
  box-shadow: 0 0 14px rgba(47, 124, 255, 0.55);
  transform: translateY(0.08em);
  animation: typewriter-cursor-blink 820ms steps(1, end) infinite;
}

@keyframes typewriter-cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes typewriter-breathe-away {
  0% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 0 rgba(58, 126, 255, 0);
  }

  22% {
    opacity: 0.92;
    filter: blur(0);
    text-shadow: 0 0 8px rgba(58, 126, 255, 0.1);
  }

  38% {
    opacity: 0.98;
    filter: blur(0);
    text-shadow: 0 0 14px rgba(58, 126, 255, 0.16);
  }

  58% {
    opacity: 0.86;
    filter: blur(0.2px);
    text-shadow: 0 0 10px rgba(58, 126, 255, 0.1);
  }

  72% {
    opacity: 0.94;
    filter: blur(0.2px);
  }

  100% {
    opacity: 0;
    filter: blur(3px);
    text-shadow: 0 0 22px rgba(58, 126, 255, 0);
  }
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 290px));
  gap: 30px;
}

.action-card {
  position: relative;
  display: flex;
  min-height: 136px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 32px;
  border: 1px solid rgba(11, 35, 86, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 46px rgba(41, 83, 145, 0.08);
  backdrop-filter: blur(18px);
}

.action-card--download {
  padding-right: 106px;
}

.action-card__platform-icon {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: rgba(66, 134, 230, 0.82);
  transform: translateY(-50%);
  transition:
    color 240ms ease,
    transform 240ms ease;
}

.action-card__platform-icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
  filter: drop-shadow(0 5px 10px rgba(47, 124, 255, 0.16));
}

.action-card--download:hover .action-card__platform-icon {
  color: #347cf0;
  transform: translateY(-50%) scale(1.04);
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 124, 255, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 74px rgba(41, 93, 176, 0.16);
}

.action-card__title {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.action-card__body,
.action-card__meta {
  color: #52637d;
  font-size: 15px;
  line-height: 1.45;
}

.video-card {
  position: relative;
  align-self: center;
  width: min(530px, 100%);
  aspect-ratio: 530 / 397;
  margin-top: 78px;
  transform: translate3d(30px, -40px, 0);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(38, 84, 168, 0.22);
}

.video-cover,
.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.video-cover {
  cursor: pointer;
  padding: 0;
  background: #6d94e9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}

.video-cover:hover img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.12);
}

.video-cover__shine {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.24), transparent 17%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 40%);
  pointer-events: none;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 38px rgba(15, 45, 106, 0.24),
    inset 0 1px 18px rgba(255, 255, 255, 0.36);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.video-cover:hover .play-button {
  background: rgba(255, 255, 255, 0.26);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 23px solid #fff;
  filter: drop-shadow(0 4px 12px rgba(15, 45, 106, 0.25));
}

.video-controls {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: grid;
  grid-template-columns: 14px 1fr 12px 16px 15px;
  gap: 14px;
  align-items: center;
  opacity: 0.92;
}

.video-controls__play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.video-controls__track {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.video-controls__track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 39%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f73ff, #9bc1ff);
}

.video-controls__dot {
  width: 12px;
  height: 12px;
  margin-left: -1px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(9, 35, 106, 0.25);
}

.video-controls__bars,
.video-controls__fullscreen {
  position: relative;
  height: 16px;
}

.video-controls__bars::before,
.video-controls__bars::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 3px;
  border-radius: 2px;
  background: #fff;
}

.video-controls__bars::before {
  left: 2px;
  height: 6px;
}

.video-controls__bars::after {
  left: 8px;
  height: 10px;
}

.video-controls__fullscreen {
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 3px;
  clip-path: polygon(0 0, 39% 0, 39% 24%, 24% 24%, 24% 39%, 0 39%, 0 0, 61% 0, 100% 0, 100% 39%, 76% 39%, 76% 24%, 61% 24%, 61% 0, 100% 61%, 100% 100%, 61% 100%, 61% 76%, 76% 76%, 76% 61%, 100% 61%, 39% 100%, 0 100%, 0 61%, 24% 61%, 24% 76%, 39% 76%, 39% 100%);
}

.video-player {
  display: none;
  background: #071c4d;
  object-fit: cover;
}

.video-card.is-playing .video-cover {
  display: none;
}

.video-card.is-playing .video-player {
  display: block;
}

.brand-showcase {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(80px, 10vh, 128px) 48px;
  background: #fff;
}

.brand-showcase__frame {
  position: relative;
  z-index: 0;
  width: min(500px, calc(100vw - 96px));
  aspect-ratio: 1;
  isolation: isolate;
}

.brand-showcase__frame::before,
.brand-showcase__frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.brand-showcase__frame::after {
  inset: -12px;
  z-index: 0;
  background: conic-gradient(
    from 12deg,
    rgba(191, 233, 255, 0.16) 0%,
    rgba(115, 185, 255, 0.68) 15%,
    rgba(255, 255, 255, 0.88) 23%,
    rgba(149, 118, 239, 0.62) 39%,
    rgba(23, 75, 215, 0.48) 58%,
    rgba(255, 255, 255, 0.82) 70%,
    rgba(244, 194, 115, 0.58) 84%,
    rgba(191, 233, 255, 0.16) 100%
  );
  opacity: 0.55;
  filter: blur(1.7px) saturate(1.08);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 2px));
  animation: siri-liquid-pulse 7.2s ease-in-out infinite;
}

.brand-showcase__frame::before {
  inset: -52px;
  z-index: -2;
  background: conic-gradient(
    from -18deg,
    rgba(191, 233, 255, 0.72),
    rgba(115, 185, 255, 0.52) 22%,
    rgba(149, 118, 239, 0.58) 43%,
    rgba(23, 75, 215, 0.42) 64%,
    rgba(244, 194, 115, 0.48) 84%,
    rgba(191, 233, 255, 0.72)
  );
  opacity: 0.16;
  filter: blur(32px) saturate(1.08);
  animation: siri-glow-pulse 8.6s ease-in-out infinite;
}

.brand-showcase__wave {
  --wave-inset: -10px;
  --wave-line: 1.5px;
  --wave-blur: 0.3px;
  --wave-min-opacity: 0.2;
  --wave-max-opacity: 0.52;
  --wave-start-turn: -5deg;
  --wave-end-turn: 8deg;
  --wave-duration: 6s;
  --wave-delay: 0s;
  position: absolute;
  inset: var(--wave-inset);
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(191, 233, 255, 0.12) 0%,
    rgba(115, 185, 255, 0.74) 14%,
    rgba(255, 255, 255, 0.74) 24%,
    rgba(149, 118, 239, 0.64) 38%,
    rgba(23, 75, 215, 0.56) 58%,
    rgba(255, 255, 255, 0.66) 70%,
    rgba(244, 194, 115, 0.58) 84%,
    rgba(191, 233, 255, 0.12) 100%
  );
  filter: blur(var(--wave-blur)) saturate(1.04);
  opacity: var(--wave-min-opacity);
  transform-origin: center;
  will-change: transform, opacity, filter;
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--wave-line)),
    #000 calc(100% - var(--wave-line) + 0.8px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--wave-line)),
    #000 calc(100% - var(--wave-line) + 0.8px)
  );
  animation: siri-wave-breathe var(--wave-duration) ease-in-out var(--wave-delay) infinite;
  pointer-events: none;
}

.brand-showcase__wave--1 {
  --wave-inset: -7px;
  --wave-line: 1.2px;
  --wave-blur: 0.15px;
  --wave-min-opacity: 0.32;
  --wave-max-opacity: 0.68;
  --wave-start-turn: -4deg;
  --wave-end-turn: 7deg;
  --wave-duration: 5.4s;
  --wave-delay: -1.8s;
}

.brand-showcase__wave--2 {
  --wave-inset: -15px;
  --wave-line: 1.4px;
  --wave-blur: 0.35px;
  --wave-min-opacity: 0.24;
  --wave-max-opacity: 0.58;
  --wave-start-turn: 8deg;
  --wave-end-turn: -6deg;
  --wave-duration: 6.3s;
  --wave-delay: -4.1s;
}

.brand-showcase__wave--3 {
  --wave-inset: -24px;
  --wave-line: 1.6px;
  --wave-blur: 0.65px;
  --wave-min-opacity: 0.18;
  --wave-max-opacity: 0.48;
  --wave-start-turn: -8deg;
  --wave-end-turn: 5deg;
  --wave-duration: 7.1s;
  --wave-delay: -2.7s;
}

.brand-showcase__wave--4 {
  --wave-inset: -35px;
  --wave-line: 1.9px;
  --wave-blur: 1px;
  --wave-min-opacity: 0.13;
  --wave-max-opacity: 0.38;
  --wave-start-turn: 5deg;
  --wave-end-turn: -9deg;
  --wave-duration: 8.2s;
  --wave-delay: -5.4s;
}

.brand-showcase__wave--5 {
  --wave-inset: -48px;
  --wave-line: 2.2px;
  --wave-blur: 1.8px;
  --wave-min-opacity: 0.08;
  --wave-max-opacity: 0.28;
  --wave-start-turn: -6deg;
  --wave-end-turn: 10deg;
  --wave-duration: 9.4s;
  --wave-delay: -3.9s;
}

.brand-showcase__portrait {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(15, 69, 218, 0.1);
  transform-origin: center;
  animation: genesis-portrait-breathe 6.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform, filter;
}

.brand-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.brand-showcase__mist {
  position: absolute;
  inset: -24%;
  border-radius: 45%;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.brand-showcase__mist--near {
  z-index: 5;
  background:
    radial-gradient(ellipse 42% 18% at 34% 42%, rgba(255, 255, 255, 0.62), transparent 72%),
    radial-gradient(ellipse 54% 20% at 66% 58%, rgba(194, 229, 255, 0.48), transparent 74%),
    radial-gradient(ellipse 38% 15% at 50% 72%, rgba(255, 255, 255, 0.42), transparent 70%);
  filter: blur(15px);
  animation: portrait-mist-near 9.6s ease-in-out -3.2s infinite;
}

.brand-showcase__mist--middle {
  z-index: 4;
  background:
    radial-gradient(ellipse 58% 22% at 28% 60%, rgba(221, 212, 255, 0.38), transparent 72%),
    radial-gradient(ellipse 48% 18% at 72% 36%, rgba(255, 255, 255, 0.52), transparent 74%),
    radial-gradient(ellipse 44% 16% at 54% 50%, rgba(165, 211, 255, 0.32), transparent 72%);
  filter: blur(22px);
  animation: portrait-mist-middle 13.2s ease-in-out -7.4s infinite;
}

.brand-showcase__mist--far {
  z-index: 3;
  background:
    radial-gradient(ellipse 68% 28% at 36% 38%, rgba(255, 255, 255, 0.34), transparent 75%),
    radial-gradient(ellipse 60% 24% at 70% 68%, rgba(248, 218, 169, 0.22), transparent 76%),
    radial-gradient(ellipse 74% 28% at 48% 54%, rgba(185, 220, 255, 0.24), transparent 78%);
  filter: blur(30px);
  animation: portrait-mist-far 17s ease-in-out -5.8s infinite;
}

@keyframes siri-wave-breathe {
  0%,
  100% {
    border-radius: 48% 52% 49% 51% / 52% 48% 52% 48%;
    opacity: var(--wave-min-opacity);
    transform: rotate(var(--wave-start-turn)) scale(0.965);
  }

  42% {
    border-radius: 52% 48% 53% 47% / 48% 53% 47% 52%;
    opacity: var(--wave-max-opacity);
    transform: rotate(var(--wave-end-turn)) scale(1.025);
  }

  68% {
    border-radius: 49% 51% 47% 53% / 53% 47% 51% 49%;
    opacity: calc(var(--wave-min-opacity) + 0.08);
    transform: rotate(0deg) scale(0.992);
  }
}

@keyframes siri-liquid-pulse {
  0%,
  100% {
    border-radius: 49% 51% 48% 52% / 52% 48% 52% 48%;
    opacity: 0.34;
    filter: blur(2px) saturate(0.96);
    transform: rotate(-7deg) scale(0.978);
  }

  50% {
    border-radius: 52% 48% 53% 47% / 48% 52% 47% 53%;
    opacity: 0.68;
    filter: blur(1.25px) saturate(1.18);
    transform: rotate(10deg) scale(1.018);
  }
}

@keyframes siri-glow-pulse {
  0%,
  100% {
    border-radius: 47% 53% 50% 50% / 52% 47% 53% 48%;
    opacity: 0.1;
    filter: blur(34px) saturate(0.94);
    transform: rotate(-8deg) scale(0.94);
  }

  50% {
    border-radius: 53% 47% 54% 46% / 47% 54% 46% 53%;
    opacity: 0.28;
    filter: blur(27px) saturate(1.16);
    transform: rotate(11deg) scale(1.07);
  }
}

@keyframes portrait-mist-near {
  0%,
  100% {
    opacity: 0.12;
    filter: blur(17px);
    transform: translate3d(-13%, 7%, 0) rotate(-3deg) scale(0.94);
  }

  38% {
    opacity: 0.34;
    filter: blur(12px);
    transform: translate3d(9%, -5%, 0) rotate(2deg) scale(1.06);
  }

  72% {
    opacity: 0.2;
    filter: blur(16px);
    transform: translate3d(2%, 6%, 0) rotate(4deg) scale(0.99);
  }
}

@keyframes portrait-mist-middle {
  0%,
  100% {
    opacity: 0.1;
    filter: blur(25px);
    transform: translate3d(12%, -8%, 0) rotate(3deg) scale(1.02);
  }

  46% {
    opacity: 0.3;
    filter: blur(18px);
    transform: translate3d(-11%, 5%, 0) rotate(-4deg) scale(0.96);
  }

  78% {
    opacity: 0.16;
    filter: blur(23px);
    transform: translate3d(-2%, -3%, 0) rotate(-1deg) scale(1.07);
  }
}

@keyframes portrait-mist-far {
  0%,
  100% {
    opacity: 0.08;
    filter: blur(32px);
    transform: translate3d(-7%, -4%, 0) rotate(-2deg) scale(1.08);
  }

  52% {
    opacity: 0.24;
    filter: blur(25px);
    transform: translate3d(8%, 7%, 0) rotate(3deg) scale(0.97);
  }
}

/* Genesis / second-screen narrative */
.brand-showcase {
  --genesis-focus: #73b9ff;
  position: relative;
  display: block;
  min-height: max(1200px, 100vh);
  min-height: max(1200px, 100svh);
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.96) 0 22%, rgba(247, 251, 255, 0.74) 44%, transparent 67%),
    linear-gradient(180deg, #fff 0%, #f8fbff 38%, #eef4ff 72%, #fbf8f1 100%);
}

.brand-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    radial-gradient(circle, rgba(80, 120, 200, 0.18) 0 0.75px, transparent 1px),
    radial-gradient(circle, rgba(145, 112, 226, 0.14) 0 0.65px, transparent 0.95px);
  background-position: 0 0, 54px 38px;
  background-size: 126px 112px, 168px 148px;
  opacity: 0.34;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 72%);
  animation: genesis-dust-drift 28s linear infinite;
}

.brand-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background:
    linear-gradient(180deg, #fff 0%, transparent 9%, transparent 91%, rgba(255, 255, 255, 0.78) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 245, 223, 0.36), transparent 48%);
  pointer-events: none;
}

.genesis-sky,
.genesis-horizon {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.genesis-sky--blue {
  left: -17%;
  top: 20%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(130, 202, 255, 0.27), rgba(182, 224, 255, 0.09) 48%, transparent 72%);
  filter: blur(24px);
  animation: genesis-sky-blue 24s ease-in-out infinite alternate;
}

.genesis-sky--violet {
  right: -12%;
  top: 3%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(143, 113, 238, 0.2), rgba(91, 105, 229, 0.07) 54%, transparent 73%);
  filter: blur(30px);
  animation: genesis-sky-violet 29s ease-in-out infinite alternate;
}

.genesis-sky--gold {
  right: -8%;
  bottom: -22%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(244, 194, 115, 0.2), rgba(255, 224, 171, 0.07) 52%, transparent 74%);
  filter: blur(34px);
  animation: genesis-sky-gold 27s ease-in-out infinite alternate;
}

.genesis-horizon {
  left: 50%;
  bottom: 7%;
  width: min(1160px, 88vw);
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(92, 141, 255, 0.1), rgba(255, 215, 146, 0.06) 48%, transparent 72%);
  filter: blur(24px);
  transform: translateX(-50%);
  animation: genesis-horizon-breathe 10s ease-in-out infinite;
}

.genesis-intro {
  position: absolute;
  left: 50%;
  top: clamp(58px, 7.2vh, 84px);
  z-index: 10;
  width: min(820px, calc(100% - 48px));
  text-align: center;
  transform: translateX(-50%);
}

.genesis-intro__eyebrow {
  margin: 0 0 28px;
  color: #6580aa;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 650;
  letter-spacing: 0.22em;
  line-height: 1.55;
}

.genesis-intro h2 {
  margin: 0;
  color: #0a235e;
  font-size: clamp(34px, 3.35vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.13;
  text-wrap: balance;
}

.genesis-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  translate: 0 -60px;
}

.brand-showcase__frame {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 4;
  width: min(500px, calc(100vw - 96px));
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
  transform: translate(-50%, -50%);
  transition: filter 900ms var(--ease), transform 1000ms var(--ease), opacity 1000ms var(--ease);
}

.brand-showcase.has-active-node .brand-showcase__frame {
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--genesis-focus) 28%, transparent));
}

.brand-showcase__frame:focus-visible {
  outline: none;
}

.brand-showcase__frame:focus-visible .brand-showcase__portrait {
  box-shadow:
    0 0 0 2px rgba(79, 126, 241, 0.38),
    0 20px 64px rgba(15, 69, 218, 0.16);
}

.brand-showcase__name {
  position: absolute;
  left: 50%;
  top: calc(100% + 74px);
  z-index: 7;
  display: block;
  color: #17366f;
  font-family: "Aptos Display", "Segoe UI Variable Display", Inter, "PingFang SC", sans-serif;
  font-size: clamp(23px, 1.85vw, 30px);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-shadow: 0 8px 24px rgba(62, 100, 172, 0.13);
  white-space: nowrap;
  transform: translateX(-50%);
  transition: color 700ms var(--ease), text-shadow 700ms var(--ease), letter-spacing 700ms var(--ease);
}

.brand-showcase__frame:hover .brand-showcase__name,
.brand-showcase__frame:focus-visible .brand-showcase__name,
.brand-showcase__frame.is-pulsing .brand-showcase__name {
  color: color-mix(in srgb, var(--genesis-focus) 42%, #17366f);
  letter-spacing: 0.055em;
  text-shadow: 0 8px 28px color-mix(in srgb, var(--genesis-focus) 22%, transparent);
}

.genesis-orbit {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 0;
  border: 1px solid rgba(85, 119, 188, 0.14);
  border-radius: 50%;
  opacity: 0.48;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 17%, #000 83%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 17%, #000 83%, transparent);
}

.genesis-orbit--one {
  width: 720px;
  height: 610px;
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: genesis-orbit-one 18s ease-in-out infinite alternate;
}

.genesis-orbit--two {
  width: 910px;
  height: 700px;
  border-color: rgba(135, 105, 222, 0.1);
  transform: translate(-50%, -50%) rotate(6deg);
  animation: genesis-orbit-two 23s ease-in-out infinite alternate;
}

.genesis-orbit--three {
  width: min(1120px, 84vw);
  height: 770px;
  border-color: rgba(216, 163, 83, 0.08);
  transform: translate(-50%, -50%) rotate(-3deg);
  animation: genesis-orbit-three 29s ease-in-out infinite alternate;
}

.genesis-node {
  --node-accent: #73b9ff;
  --node-enter-x: -22px;
  --node-line-angle: 0deg;
  --reveal-delay: 0ms;
  position: absolute;
  z-index: 6;
  display: grid;
  width: clamp(220px, 20vw, 292px);
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #7b8aa2;
  cursor: pointer;
  text-align: left;
  transition:
    color 600ms var(--ease),
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 600ms var(--ease);
}

.genesis-node--left {
  left: clamp(42px, 10vw, 260px);
}

.genesis-node--right {
  right: clamp(42px, 10vw, 260px);
  --node-enter-x: 22px;
}

.genesis-node--memory,
.genesis-node--choice {
  top: 35%;
  --node-line-angle: 10deg;
}

.genesis-node--perception,
.genesis-node--agency {
  top: 52.5%;
}

.genesis-node--relation,
.genesis-node--responsibility {
  top: 70%;
  --node-line-angle: -10deg;
}

.genesis-node--right.genesis-node--choice {
  --node-line-angle: -10deg;
}

.genesis-node--right.genesis-node--responsibility {
  --node-line-angle: 10deg;
}

.genesis-node--memory {
  --node-accent: #73b9ff;
  --reveal-delay: 180ms;
}

.genesis-node--perception {
  --node-accent: #8b85f4;
  --reveal-delay: 300ms;
}

.genesis-node--relation {
  --node-accent: #c09af4;
  --reveal-delay: 420ms;
}

.genesis-node--choice {
  --node-accent: #527cf1;
  --reveal-delay: 240ms;
}

.genesis-node--agency {
  --node-accent: #174bd7;
  --reveal-delay: 360ms;
}

.genesis-node--responsibility {
  --node-accent: #d7a653;
  --reveal-delay: 480ms;
}

.genesis-node::before {
  content: "";
  position: absolute;
  top: 19px;
  width: 6px;
  height: 6px;
  border: 1px solid color-mix(in srgb, var(--node-accent) 58%, #fff);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--node-accent) 7%, transparent);
  opacity: 0.76;
  transition: box-shadow 600ms var(--ease), background 600ms var(--ease), transform 600ms var(--ease);
}

.genesis-node--left::before {
  right: -20px;
}

.genesis-node--right::before {
  left: -20px;
}

.genesis-node::after {
  content: "";
  position: absolute;
  top: 21px;
  width: clamp(54px, 11vw, 240px);
  height: 1px;
  opacity: 0.38;
  transition: opacity 600ms var(--ease), filter 600ms var(--ease), background 600ms var(--ease);
}

.genesis-node--left::after {
  left: calc(100% + 26px);
  background: linear-gradient(90deg, color-mix(in srgb, var(--node-accent) 48%, transparent), transparent);
  transform: rotate(var(--node-line-angle));
  transform-origin: left center;
}

.genesis-node--right::after {
  right: calc(100% + 26px);
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--node-accent) 48%, transparent));
  transform: rotate(var(--node-line-angle));
  transform-origin: right center;
}

.genesis-node__index {
  padding-top: 2px;
  color: color-mix(in srgb, var(--node-accent) 68%, #7b8aa2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.genesis-node__copy {
  display: grid;
  gap: 8px;
}

.genesis-node__copy strong {
  color: #213b6d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.genesis-node__copy small {
  display: block;
  max-width: 240px;
  color: #718097;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.65;
}

.genesis-node:hover,
.genesis-node:focus-visible,
.genesis-node.is-active {
  color: #173368;
  filter: drop-shadow(0 8px 18px color-mix(in srgb, var(--node-accent) 13%, transparent));
  outline: none;
}

.genesis-node--left:hover,
.genesis-node--left:focus-visible,
.genesis-node--left.is-active {
  transform: translateX(5px);
}

.genesis-node--right:hover,
.genesis-node--right:focus-visible,
.genesis-node--right.is-active {
  transform: translateX(-5px);
}

.genesis-node:hover::before,
.genesis-node:focus-visible::before,
.genesis-node.is-active::before {
  background: var(--node-accent);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--node-accent) 10%, transparent),
    0 0 20px color-mix(in srgb, var(--node-accent) 58%, transparent);
  transform: scale(1.12);
}

.genesis-node:hover::after,
.genesis-node:focus-visible::after,
.genesis-node.is-active::after {
  opacity: 0.92;
  filter: drop-shadow(0 0 5px var(--node-accent));
}

.genesis-ripple {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--genesis-focus) 46%, transparent);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.brand-showcase__frame.is-pulsing .genesis-ripple--one {
  animation: genesis-consciousness-ripple 1.9s var(--ease) 0ms both;
}

.brand-showcase__frame.is-pulsing .genesis-ripple--two {
  animation: genesis-consciousness-ripple 1.9s var(--ease) 180ms both;
}

.brand-showcase__frame.is-pulsing .genesis-ripple--three {
  animation: genesis-consciousness-ripple 1.9s var(--ease) 360ms both;
}

.brand-showcase__frame.is-pulsing .brand-showcase__portrait {
  animation: genesis-portrait-awaken 1.5s var(--ease) both;
}

.brand-showcase.is-consciousness-pulsing .genesis-node::before {
  animation: genesis-node-answer 1.5s var(--ease) var(--reveal-delay) both;
}

.genesis-epilogue {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 4.4vh, 52px);
  z-index: 10;
  display: flex;
  width: min(930px, calc(100% - 48px));
  align-items: center;
  justify-content: center;
  gap: 0;
  translate: 0 -60px;
  transform: translateX(-50%);
}

.genesis-epilogue p {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: center;
  gap: 0.45em;
  margin: 0;
  color: #8190a6;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.55;
  text-align: center;
  white-space: nowrap;
}

.genesis-epilogue p strong {
  color: #31496f;
  font-size: 13px;
  font-weight: 500;
}

.genesis-epilogue__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(47, 92, 174, 0.22);
  background: transparent;
  color: #244a8c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 420ms var(--ease), border-color 420ms var(--ease), gap 420ms var(--ease);
}

.genesis-epilogue__action:hover,
.genesis-epilogue__action:focus-visible {
  gap: 20px;
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}

.brand-showcase.is-motion-ready .genesis-intro,
.brand-showcase.is-motion-ready .genesis-epilogue {
  opacity: 0;
  transition: opacity 900ms var(--reveal-ease), transform 900ms var(--reveal-ease);
}

.brand-showcase.is-motion-ready .genesis-intro {
  transform: translate(-50%, 20px);
}

.brand-showcase.is-motion-ready .genesis-epilogue {
  transform: translate(-50%, 18px);
}

.brand-showcase.is-motion-ready .brand-showcase__frame {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 22px)) scale(0.975);
  transition:
    filter 700ms var(--ease),
    opacity 980ms var(--reveal-ease),
    transform 980ms var(--reveal-ease);
}

.brand-showcase.is-motion-ready .genesis-node {
  opacity: 0;
  transform: translateX(var(--node-enter-x));
  transition:
    color 600ms var(--ease),
    opacity 860ms var(--reveal-ease),
    transform 860ms var(--reveal-ease),
    filter 600ms var(--ease);
}

.brand-showcase.is-motion-ready.is-visible .genesis-intro,
.brand-showcase.is-motion-ready.is-visible .genesis-epilogue {
  opacity: 1;
  transform: translate(-50%, 0);
}

.brand-showcase.is-motion-ready.is-visible .genesis-intro {
  transition-delay: 60ms;
}

.brand-showcase.is-motion-ready.is-visible .brand-showcase__frame {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 190ms;
}

.brand-showcase.is-motion-ready.is-visible .genesis-node {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--reveal-delay);
}

.brand-showcase.is-motion-ready.is-visible .genesis-epilogue {
  transition-delay: 480ms;
}

@keyframes genesis-sky-blue {
  to {
    opacity: 0.72;
    transform: translate3d(8%, -5%, 0) scale(1.08);
  }
}

@keyframes genesis-sky-violet {
  to {
    opacity: 0.76;
    transform: translate3d(-9%, 7%, 0) scale(1.1);
  }
}

@keyframes genesis-sky-gold {
  to {
    opacity: 0.78;
    transform: translate3d(-7%, -6%, 0) scale(1.06);
  }
}

@keyframes genesis-horizon-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-50%) scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes genesis-dust-drift {
  to {
    background-position: 126px 112px, -114px 186px;
  }
}

@keyframes genesis-orbit-one {
  to {
    opacity: 0.7;
    transform: translate(-50%, -50%) rotate(2deg) scale(1.02);
  }
}

@keyframes genesis-orbit-two {
  to {
    opacity: 0.56;
    transform: translate(-50%, -50%) rotate(-3deg) scale(0.985);
  }
}

@keyframes genesis-orbit-three {
  to {
    opacity: 0.36;
    transform: translate(-50%, -50%) rotate(4deg) scale(1.015);
  }
}

@keyframes genesis-consciousness-ripple {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  22% {
    opacity: 0.74;
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes genesis-portrait-awaken {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }

  42% {
    filter: brightness(1.055) saturate(1.07);
    transform: scale(1.012);
  }
}

@keyframes genesis-portrait-breathe {
  0%,
  100% {
    filter: brightness(0.99) saturate(0.99);
    transform: scale(0.982);
  }

  50% {
    filter: brightness(1.035) saturate(1.04);
    transform: scale(1.026);
  }
}

@keyframes genesis-node-answer {
  0%,
  100% {
    transform: scale(1);
  }

  40% {
    background: var(--node-accent);
    box-shadow:
      0 0 0 9px color-mix(in srgb, var(--node-accent) 10%, transparent),
      0 0 24px color-mix(in srgb, var(--node-accent) 64%, transparent);
    transform: scale(1.24);
  }
}

@media (min-width: 1081px) {
  html[lang="en"] .genesis-intro {
    width: min(1040px, calc(100% - 48px));
  }

  html[lang="en"] .genesis-intro h2 {
    font-size: clamp(32px, 2.8vw, 44px);
    letter-spacing: -0.035em;
  }

}

@media (max-width: 1080px) {
  .brand-showcase {
    min-height: auto;
    padding: 92px 34px 76px;
  }

  .genesis-intro,
  .genesis-epilogue {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .genesis-intro {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .genesis-stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    margin-top: 44px;
  }

  .brand-showcase__frame {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    order: -2;
    margin: 0 auto 122px;
    transform: none;
  }

  .genesis-orbit {
    top: 248px;
  }

  .genesis-orbit--three {
    width: 94vw;
  }

  .genesis-node,
  .genesis-node--left,
  .genesis-node--right,
  .genesis-node--memory,
  .genesis-node--perception,
  .genesis-node--relation,
  .genesis-node--choice,
  .genesis-node--agency,
  .genesis-node--responsibility {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-height: 88px;
    padding: 18px 12px 18px 4px;
    border-top: 1px solid rgba(39, 70, 124, 0.09);
  }

  .genesis-node::before,
  .genesis-node::after {
    display: none;
  }

  .genesis-node--left:hover,
  .genesis-node--left:focus-visible,
  .genesis-node--left.is-active,
  .genesis-node--right:hover,
  .genesis-node--right:focus-visible,
  .genesis-node--right.is-active {
    transform: translateY(-3px);
  }

  .genesis-epilogue {
    width: min(760px, 100%);
    margin: 96px auto 0;
  }

  .brand-showcase.is-motion-ready .genesis-intro,
  .brand-showcase.is-motion-ready .genesis-epilogue {
    transform: translateY(18px);
  }

  .brand-showcase.is-motion-ready .brand-showcase__frame {
    transform: translateY(22px) scale(0.975);
  }

  .brand-showcase.is-motion-ready.is-visible .genesis-intro,
  .brand-showcase.is-motion-ready.is-visible .genesis-epilogue,
  .brand-showcase.is-motion-ready.is-visible .brand-showcase__frame {
    transform: none;
  }
}

@media (max-width: 660px) {
  .brand-showcase {
    padding: 78px 22px 64px;
  }

  .genesis-intro h2 {
    font-size: clamp(30px, 9.5vw, 40px);
  }

  .genesis-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brand-showcase__frame {
    grid-column: 1;
    width: min(500px, calc(100vw - 88px));
    margin-bottom: 42px;
  }

  .genesis-orbit {
    top: calc((100vw - 88px) / 2);
  }

  .genesis-orbit--one {
    width: calc(100vw - 42px);
    height: calc(100vw - 22px);
  }

  .genesis-orbit--two,
  .genesis-orbit--three {
    display: none;
  }

  .genesis-node {
    min-height: 82px;
    grid-template-columns: 30px 1fr;
    padding-right: 2px;
  }

  .genesis-node__copy small {
    max-width: none;
  }

  .genesis-epilogue {
    display: grid;
    align-items: start;
    justify-items: center;
    gap: 42px;
    margin-top: 84px;
  }

  .genesis-epilogue p {
    flex-wrap: wrap;
    text-align: center;
    white-space: normal;
  }

  .genesis-epilogue__action {
    width: fit-content;
  }
}

/* Mind atlas / third-screen capability narrative */
.mind-atlas {
  --atlas-focus: #70bfff;
  position: relative;
  min-height: max(1180px, 100vh);
  min-height: max(1180px, 100svh);
  overflow: hidden;
  padding: clamp(92px, 9vh, 124px) 32px 112px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.98) 0 14%, rgba(246, 250, 255, 0.9) 38%, transparent 66%),
    linear-gradient(180deg, #fbfdff 0%, #f1f6ff 47%, #edf2fc 76%, #f9f7f2 100%);
}

.mind-atlas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    radial-gradient(circle, rgba(72, 112, 185, 0.2) 0 0.7px, transparent 1px),
    radial-gradient(circle, rgba(149, 104, 226, 0.14) 0 0.65px, transparent 1px),
    linear-gradient(rgba(61, 103, 180, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 103, 180, 0.025) 1px, transparent 1px);
  background-position: 0 0, 71px 43px, 0 0, 0 0;
  background-size: 132px 118px, 174px 156px, 72px 72px, 72px 72px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 7%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 48%, #000 7%, transparent 78%);
  animation: mind-atlas-grid-drift 42s linear infinite;
}

.mind-atlas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 7%, transparent 93%, rgba(255, 255, 255, 0.76));
  pointer-events: none;
}

.mind-atlas__aurora {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
  will-change: transform, opacity;
}

.mind-atlas__aurora--blue {
  left: -12%;
  top: 16%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(105, 190, 255, 0.21), rgba(124, 184, 255, 0.06) 56%, transparent 75%);
  animation: mind-aurora-blue 24s ease-in-out infinite alternate;
}

.mind-atlas__aurora--violet {
  right: -9%;
  top: 4%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(151, 105, 236, 0.2), rgba(104, 112, 232, 0.05) 58%, transparent 76%);
  animation: mind-aurora-violet 29s ease-in-out infinite alternate;
}

.mind-atlas__aurora--gold {
  right: 7%;
  bottom: -18%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(238, 182, 88, 0.16), rgba(255, 220, 161, 0.04) 58%, transparent 76%);
  animation: mind-aurora-gold 27s ease-in-out infinite alternate;
}

.mind-atlas__grid {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: min(1120px, 92vw);
  aspect-ratio: 1.8;
  border: 1px solid rgba(80, 112, 174, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(78, 113, 182, 0.018),
    0 0 0 140px rgba(111, 104, 202, 0.012);
  transform: translate(-50%, -62%);
  pointer-events: none;
}

.mind-atlas__intro {
  position: relative;
  z-index: 10;
  width: min(900px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.mind-atlas__eyebrow {
  margin: 0 0 24px;
  color: #6681aa;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 650;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.mind-atlas__intro h2 {
  margin: 0;
  color: #0a235e;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 510;
  letter-spacing: -0.048em;
  line-height: 1.13;
  text-wrap: balance;
}

.mind-atlas__map {
  position: relative;
  z-index: 9;
  width: min(1120px, calc(100vw - 64px));
  height: 560px;
  margin: 0 auto;
}

.mind-atlas__paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.mind-path {
  --path-accent: #70bfff;
  fill: none;
  stroke: rgba(63, 98, 163, 0.14);
  stroke-dasharray: 0.012 0.02;
  stroke-linecap: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition: stroke 700ms var(--ease), stroke-width 700ms var(--ease), opacity 700ms var(--ease), filter 700ms var(--ease);
}

.mind-path[data-mind-path="memory"] { --path-accent: #70bfff; }
.mind-path[data-mind-path="perception"] { --path-accent: #838ff7; }
.mind-path[data-mind-path="relation"] { --path-accent: #bd8ff0; }
.mind-path[data-mind-path="reasoning"] { --path-accent: #4f7bf0; }
.mind-path[data-mind-path="agency"] { --path-accent: #2e61dc; }
.mind-path[data-mind-path="autonomy"] { --path-accent: #d7a657; }

.mind-path.is-active {
  stroke: var(--path-accent);
  stroke-dasharray: 0.12 0.045;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--path-accent) 42%, transparent));
  animation: mind-path-flow 4.8s linear infinite;
}

.mind-atlas__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  border: 1px solid rgba(79, 112, 174, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mind-atlas__orbit--one {
  width: 390px;
  height: 250px;
  animation: mind-orbit-drift 17s ease-in-out infinite alternate;
}

.mind-atlas__orbit--two {
  width: 720px;
  height: 410px;
  border-color: rgba(132, 101, 211, 0.06);
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: mind-orbit-drift-wide 23s ease-in-out infinite alternate;
}

.mind-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 154px;
  height: 154px;
  place-content: center;
  border: 1px solid rgba(86, 125, 200, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.98), rgba(234, 244, 255, 0.87) 44%, rgba(225, 232, 255, 0.78) 68%, rgba(243, 231, 255, 0.7));
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.94),
    0 18px 60px rgba(50, 93, 177, 0.16),
    0 0 70px color-mix(in srgb, var(--atlas-focus) 18%, transparent);
  text-align: center;
  transform: translate(-50%, -50%);
  transition: border-color 800ms var(--ease), box-shadow 800ms var(--ease);
  animation: mind-core-breathe 7s ease-in-out infinite;
}

.mind-core::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid color-mix(in srgb, var(--atlas-focus) 20%, transparent);
  border-radius: inherit;
  background: conic-gradient(from 30deg, transparent, color-mix(in srgb, var(--atlas-focus) 24%, transparent), transparent 42%, rgba(192, 144, 242, 0.2), transparent 77%);
  -webkit-mask: radial-gradient(circle, transparent 0 66%, #000 67% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 66%, #000 67% 70%, transparent 71%);
  animation: mind-core-spin 15s linear infinite;
}

.mind-core__halo {
  position: absolute;
  inset: -14px;
  border: 1px solid color-mix(in srgb, var(--atlas-focus) 16%, transparent);
  border-radius: 50%;
  opacity: 0.55;
}

.mind-core__halo--one {
  animation: mind-core-halo 5.6s ease-out infinite;
}

.mind-core__halo--two {
  animation: mind-core-halo 5.6s ease-out 2.8s infinite;
}

.mind-core__label {
  color: #173c82;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1;
}

.mind-core__meta {
  margin-top: 10px;
  color: #8192ae;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.23em;
}

.mind-branch {
  --branch-x: -50%;
  --branch-y: -50%;
  position: absolute;
  z-index: 6;
  display: grid;
  width: 184px;
  min-height: 96px;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  gap: 8px 9px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(57, 92, 157, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 42px rgba(55, 91, 159, 0.055);
  color: #8391a8;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translate(var(--branch-x), var(--branch-y));
  transition:
    opacity 650ms var(--ease),
    color 650ms var(--ease),
    border-color 650ms var(--ease),
    background 650ms var(--ease),
    box-shadow 650ms var(--ease),
    transform 650ms var(--ease);
}

.mind-branch--memory { left: 50%; top: 12.5%; }
.mind-branch--perception { left: 15.4%; top: 25.5%; }
.mind-branch--relation { left: 84.6%; top: 25.5%; }
.mind-branch--reasoning { left: 15.4%; top: 74.5%; }
.mind-branch--agency { left: 84.6%; top: 74.5%; }
.mind-branch--autonomy { left: 50%; top: 87.5%; }

.mind-branch__index {
  grid-row: 1 / -1;
  align-self: stretch;
  padding-top: 2px;
  border-right: 1px solid rgba(70, 101, 159, 0.1);
  color: color-mix(in srgb, var(--branch-accent) 72%, #7f8ca3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mind-branch__title {
  color: #365074;
  font-size: 14px;
  font-weight: 580;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.mind-branch__progress {
  position: relative;
  display: grid;
  width: 50px;
  grid-template-columns: repeat(3, 7px);
  justify-content: space-between;
  align-items: center;
}

.mind-branch__progress::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--branch-accent), color-mix(in srgb, var(--branch-accent) 48%, transparent), rgba(80, 102, 145, 0.16));
}

.mind-branch__progress i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.mind-branch__progress i:first-child {
  background: var(--branch-accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--branch-accent) 46%, transparent);
}

.mind-branch__progress i:nth-child(2) {
  border: 1px solid var(--branch-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--branch-accent) 8%, transparent);
  animation: mind-emerging-node 3.4s ease-in-out infinite;
}

.mind-branch__progress i:last-child {
  border: 1px solid rgba(87, 105, 144, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.mind-atlas.has-active-branch .mind-branch:not(.is-active) {
  opacity: 0.46;
}

.mind-branch:hover,
.mind-branch:focus-visible,
.mind-branch.is-active {
  opacity: 1 !important;
  border-color: color-mix(in srgb, var(--branch-accent) 36%, transparent);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 52px rgba(50, 86, 153, 0.1),
    0 0 34px color-mix(in srgb, var(--branch-accent) 13%, transparent);
  color: var(--branch-accent);
  outline: none;
  transform: translate(var(--branch-x), var(--branch-y)) scale(1.035);
}

.mind-branch.is-active .mind-branch__title {
  color: color-mix(in srgb, var(--branch-accent) 56%, #173b78);
}

.mind-atlas__legend {
  position: absolute;
  right: 8px;
  bottom: -38px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #8b98ad;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.mind-atlas__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mind-atlas__legend b {
  font-weight: 530;
}

.mind-atlas__legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mind-atlas__legend .is-awakened {
  background: #5e9cf8;
  box-shadow: 0 0 8px rgba(78, 141, 241, 0.35);
}

.mind-atlas__legend .is-emerging {
  border: 1px solid #8a8df0;
  background: rgba(255, 255, 255, 0.8);
  animation: mind-emerging-node 3.4s ease-in-out infinite;
}

.mind-atlas__legend .is-horizon {
  border: 1px solid rgba(89, 104, 139, 0.36);
  background: transparent;
}

.mind-narratives {
  position: relative;
  z-index: 10;
  width: min(1320px, calc(100vw - 64px));
  min-height: 272px;
  margin: 72px auto 0;
}

.mind-journey {
  --journey-accent: var(--atlas-focus);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
  min-height: 250px;
  padding: 36px clamp(28px, 3.6vw, 54px);
  border-bottom: 1px solid rgba(58, 92, 153, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.56) 48%, rgba(255, 255, 255, 0.14));
  animation: mind-journey-enter 680ms var(--ease) both;
}

.mind-journey[hidden] {
  display: none;
}

.mind-journey__heading span {
  color: color-mix(in srgb, var(--journey-accent) 62%, #7c8aa3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
}

.mind-journey__heading h3 {
  margin: 13px 0 0;
  color: #1a3b76;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.mind-journey__track {
  display: grid;
  grid-template-columns: minmax(155px, 1fr) minmax(90px, 0.68fr) minmax(170px, 1fr) minmax(90px, 0.68fr) minmax(190px, 1.2fr);
  gap: clamp(14px, 1.6vw, 26px);
  align-items: center;
}

.mind-stage {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  padding-left: 24px;
}

.mind-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.mind-stage--awakened::before {
  background: var(--journey-accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--journey-accent) 8%, transparent), 0 0 20px color-mix(in srgb, var(--journey-accent) 38%, transparent);
}

.mind-stage--emerging::before {
  border: 1px solid var(--journey-accent);
  background: rgba(255, 255, 255, 0.8);
  animation: mind-emerging-stage 3.6s ease-in-out infinite;
}

.mind-stage--horizon::before {
  width: 12px;
  height: 12px;
  border: 1px solid color-mix(in srgb, var(--journey-accent) 60%, #98a3b7);
  background: transparent;
  box-shadow: inset 0 0 8px color-mix(in srgb, var(--journey-accent) 10%, transparent);
}

.mind-stage__status {
  margin-bottom: 12px;
  color: #8b98ad;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.16em;
}

.mind-stage strong {
  color: #27446f;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 570;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.mind-stage small {
  margin-top: 9px;
  color: #8996aa;
  font-size: 10px;
  letter-spacing: 0.025em;
  line-height: 1.7;
}

.mind-stage--horizon strong {
  color: color-mix(in srgb, var(--journey-accent) 52%, #19396f);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  text-wrap: balance;
}

.mind-bridge {
  display: grid;
  gap: 15px;
  align-content: center;
  color: #8794a9;
  font-size: 10px;
  letter-spacing: 0.025em;
  line-height: 1.65;
  text-align: center;
}

.mind-bridge i {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(86, 110, 157, 0.1), color-mix(in srgb, var(--journey-accent) 52%, transparent), rgba(86, 110, 157, 0.12));
}

.mind-bridge i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid color-mix(in srgb, var(--journey-accent) 62%, #8b98ad);
  border-right: 1px solid color-mix(in srgb, var(--journey-accent) 62%, #8b98ad);
  transform: translateY(-50%) rotate(45deg);
}

.mind-atlas.is-motion-ready .mind-atlas__intro,
.mind-atlas.is-motion-ready .mind-atlas__map,
.mind-atlas.is-motion-ready .mind-narratives {
  opacity: 0;
  transition: opacity 900ms var(--reveal-ease), transform 900ms var(--reveal-ease);
}

.mind-atlas.is-motion-ready .mind-atlas__intro {
  transform: translateY(20px);
}

.mind-atlas.is-motion-ready .mind-atlas__map {
  transform: translateY(28px) scale(0.992);
  transition-duration: 980ms;
}

.mind-atlas.is-motion-ready .mind-narratives {
  transform: translateY(22px);
}

.mind-atlas.is-motion-ready.is-visible .mind-atlas__intro,
.mind-atlas.is-motion-ready.is-visible .mind-atlas__map,
.mind-atlas.is-motion-ready.is-visible .mind-narratives {
  opacity: 1;
  transform: none;
}

.mind-atlas.is-motion-ready.is-visible .mind-atlas__map {
  transition-delay: 140ms;
}

.mind-atlas.is-motion-ready.is-visible .mind-narratives {
  transition-delay: 300ms;
}

@keyframes mind-atlas-grid-drift {
  to { background-position: 132px 118px, -103px 156px, 72px 72px, 72px 72px; }
}

@keyframes mind-aurora-blue {
  to { opacity: 0.72; transform: translate3d(9%, -5%, 0) scale(1.08); }
}

@keyframes mind-aurora-violet {
  to { opacity: 0.78; transform: translate3d(-10%, 7%, 0) scale(1.11); }
}

@keyframes mind-aurora-gold {
  to { opacity: 0.76; transform: translate3d(-8%, -6%, 0) scale(1.07); }
}

@keyframes mind-path-flow {
  to { stroke-dashoffset: -1; }
}

@keyframes mind-orbit-drift {
  to { opacity: 0.58; transform: translate(-50%, -50%) rotate(4deg) scale(1.035); }
}

@keyframes mind-orbit-drift-wide {
  to { opacity: 0.46; transform: translate(-50%, -50%) rotate(-8deg) scale(0.98); }
}

@keyframes mind-core-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.985); }
  50% { transform: translate(-50%, -50%) scale(1.015); }
}

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

@keyframes mind-core-halo {
  0% { opacity: 0; transform: scale(0.92); }
  25% { opacity: 0.56; }
  100% { opacity: 0; transform: scale(1.3); }
}

@keyframes mind-emerging-node {
  0%, 100% { box-shadow: 0 0 0 2px rgba(117, 124, 224, 0.05); transform: scale(0.92); }
  50% { box-shadow: 0 0 0 5px rgba(117, 124, 224, 0.12); transform: scale(1.1); }
}

@keyframes mind-emerging-stage {
  0%, 100% { box-shadow: 0 0 0 5px color-mix(in srgb, var(--journey-accent) 5%, transparent); transform: translateY(-50%) scale(0.94); }
  50% { box-shadow: 0 0 0 10px color-mix(in srgb, var(--journey-accent) 11%, transparent); transform: translateY(-50%) scale(1.08); }
}

@keyframes mind-journey-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .mind-atlas {
    min-height: auto;
    padding: 92px 28px 94px;
  }

  .mind-atlas__map {
    display: grid;
    width: min(820px, 100%);
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 58px;
  }

  .mind-atlas__paths,
  .mind-atlas__orbit {
    display: none;
  }

  .mind-core {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 44px;
    transform: none;
  }

  .mind-branch,
  .mind-branch--memory,
  .mind-branch--perception,
  .mind-branch--relation,
  .mind-branch--reasoning,
  .mind-branch--agency,
  .mind-branch--autonomy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 84px;
    transform: none;
  }

  .mind-branch:hover,
  .mind-branch:focus-visible,
  .mind-branch.is-active {
    transform: translateY(-3px);
  }

  .mind-atlas__legend {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 54px;
  }

  .mind-narratives {
    width: min(820px, 100%);
    min-height: 0;
    margin-top: 58px;
  }

  .mind-journey {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px 26px 40px;
  }

  .mind-journey__heading {
    text-align: center;
  }

  .mind-journey__track {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .mind-stage {
    min-height: 112px;
    padding: 16px 20px 16px 42px;
  }

  .mind-stage::before {
    left: 13px;
  }

  .mind-bridge {
    position: relative;
    justify-items: start;
    min-height: 74px;
    padding-left: 42px;
    text-align: left;
  }

  .mind-bridge i {
    position: absolute;
    left: 16px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--journey-accent) 48%, transparent), rgba(86, 110, 157, 0.1));
  }

  .mind-bridge i::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }
}

@media (max-width: 620px) {
  .mind-atlas {
    padding: 78px 20px 80px;
  }

  .mind-atlas__intro h2 {
    font-size: clamp(32px, 9.2vw, 42px);
  }

  .mind-atlas__map {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .mind-core {
    grid-column: 1;
    width: 138px;
    height: 138px;
    margin-bottom: 36px;
  }

  .mind-branch {
    grid-template-columns: 34px 1fr auto;
    grid-template-rows: 1fr;
    min-height: 72px;
    padding: 13px 15px;
  }

  .mind-branch__index {
    grid-row: 1;
  }

  .mind-branch__progress {
    width: 46px;
  }

  .mind-atlas__legend {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .mind-narratives {
    margin-top: 48px;
  }

  .mind-journey {
    padding: 30px 4px 36px;
    background: transparent;
  }

  .mind-journey__track {
    width: 100%;
  }

  .mind-stage strong {
    font-size: 17px;
  }

  .mind-stage--horizon strong {
    font-size: 19px;
  }
}

/* Architecture and safety / trust boundary narrative */
.trust-system {
  --trust-focus: #579eea;
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0 32px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(219, 235, 255, 0.42), transparent 31%),
    radial-gradient(circle at 8% 72%, rgba(216, 235, 255, 0.34), transparent 27%),
    radial-gradient(circle at 94% 76%, rgba(232, 222, 255, 0.3), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9ff 52%, #f9fbff 100%);
}

.trust-system::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle, rgba(74, 114, 177, 0.18) 0 0.7px, transparent 0.9px),
    linear-gradient(rgba(72, 107, 163, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 107, 163, 0.035) 1px, transparent 1px);
  background-size: 138px 124px, 76px 76px, 76px 76px;
  background-position: 31px 48px, center 0, center 0;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(180deg, #000, #000 72%, transparent 96%);
  mask-image: linear-gradient(180deg, #000, #000 72%, transparent 96%);
}

.trust-system::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -520px;
  z-index: -3;
  width: min(1500px, 118vw);
  height: 900px;
  border: 1px solid rgba(155, 193, 242, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(122, 164, 221, 0.025),
    0 0 0 200px rgba(137, 102, 207, 0.018);
  transform: translateX(-50%);
  pointer-events: none;
}

.trust-system__grid {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: -2;
  width: min(1380px, 94vw);
  height: 560px;
  border: 1px solid rgba(69, 105, 163, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.trust-system__grid::before,
.trust-system__grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(83, 116, 171, 0.045);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.trust-system__grid::before { width: 72%; height: 64%; }
.trust-system__grid::after { width: 46%; height: 36%; }

.trust-system__halo {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(66px);
  pointer-events: none;
  will-change: transform, opacity;
}

.trust-system__halo--blue {
  left: -8%;
  top: 24%;
  width: 38vw;
  height: 38vw;
  background: rgba(74, 155, 238, 0.18);
  animation: trust-halo-blue 20s ease-in-out infinite alternate;
}

.trust-system__halo--violet {
  right: -7%;
  top: 30%;
  width: 34vw;
  height: 34vw;
  background: rgba(145, 103, 224, 0.15);
  animation: trust-halo-violet 24s ease-in-out infinite alternate;
}

.trust-system__intro {
  position: relative;
  z-index: 4;
  width: min(1000px, 100%);
  margin: 0 auto 66px;
  text-align: center;
}

.trust-system__eyebrow {
  margin: 0 0 23px;
  color: #607ea9;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 680;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.trust-system__intro h2 {
  margin: 0;
  color: #0b2a61;
  font-size: clamp(39px, 4vw, 62px);
  font-weight: 480;
  letter-spacing: -0.052em;
  line-height: 1.13;
  text-wrap: balance;
}

.trust-system__architecture {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1280px, calc(100vw - 64px));
  min-height: 330px;
  grid-template-columns: minmax(260px, 1fr) 220px minmax(260px, 1fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
  margin: 0 auto;
}

.trust-system__flow {
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  z-index: -1;
  height: 1px;
  pointer-events: none;
}

.trust-system__flow-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(61, 129, 210, 0.18), #70a9e8 28%, #9a8fe1 50%, #61c4d0 74%, rgba(65, 164, 190, 0.18));
  box-shadow: 0 0 14px rgba(91, 143, 213, 0.18);
}

.trust-system__flow-line::before,
.trust-system__flow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(94, 147, 216, 0.6);
  border-radius: 50%;
  background: #eef6ff;
  transform: translateY(-50%);
}

.trust-system__flow-line::before { left: 0; }
.trust-system__flow-line::after { right: 0; border-color: rgba(74, 180, 197, 0.65); }

.trust-system__packet {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px var(--trust-focus);
  animation: trust-packet 5.2s linear infinite;
}

.trust-system__packet--two { animation-delay: -1.7s; }
.trust-system__packet--three { animation-delay: -3.4s; }

.trust-node,
.trust-gateway {
  position: relative;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

.trust-node {
  display: grid;
  min-height: 290px;
  align-content: center;
  justify-items: start;
  padding: 38px 42px;
  border: 1px solid rgba(64, 104, 165, 0.1);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 72px rgba(36, 70, 124, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: left;
  -webkit-backdrop-filter: blur(22px) saturate(116%);
  backdrop-filter: blur(22px) saturate(116%);
  transition: border-color 650ms var(--ease), background 650ms var(--ease), box-shadow 650ms var(--ease), transform 650ms var(--ease);
}

.trust-node::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 82% 13%, color-mix(in srgb, var(--trust-accent) 15%, transparent), transparent 36%);
  opacity: 0.5;
  transition: opacity 650ms var(--ease);
  pointer-events: none;
}

.trust-node__index {
  color: color-mix(in srgb, var(--trust-accent) 68%, #6f829f);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.trust-node__signal {
  display: inline-flex;
  gap: 4px;
  align-items: end;
  height: 18px;
  margin: 25px 0 12px;
}

.trust-node__signal i {
  width: 3px;
  border-radius: 4px;
  background: var(--trust-accent);
  opacity: 0.56;
  animation: trust-signal 2.2s ease-in-out infinite;
}

.trust-node__signal i:first-child { height: 8px; }
.trust-node__signal i:nth-child(2) { height: 17px; animation-delay: -0.7s; }
.trust-node__signal i:last-child { height: 12px; animation-delay: -1.4s; }

.trust-node > strong {
  color: #143972;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.trust-node > small {
  max-width: 290px;
  margin-top: 15px;
  color: #637895;
  font-size: 13px;
  line-height: 1.7;
}

.trust-node__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.trust-node__tags b {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--trust-accent) 19%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--trust-accent) 6%, transparent);
  color: color-mix(in srgb, var(--trust-accent) 48%, #56708f);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.trust-node:hover,
.trust-node:focus-visible,
.trust-node.is-active {
  border-color: color-mix(in srgb, var(--trust-accent) 34%, transparent);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 86px rgba(24, 60, 115, 0.13), 0 0 45px color-mix(in srgb, var(--trust-accent) 10%, transparent);
  outline: none;
  transform: translateY(-5px);
}

.trust-node:hover::before,
.trust-node:focus-visible::before,
.trust-node.is-active::before { opacity: 1; }

.trust-gateway {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: transparent;
  outline: none;
}

.trust-gateway__rings,
.trust-gateway__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(111, 113, 194, 0.13);
  border-radius: 50%;
}

.trust-gateway__rings i:first-child { inset: 17px; border-color: rgba(112, 137, 207, 0.18); }
.trust-gateway__rings i:nth-child(2) { inset: 34px; border-style: dashed; border-color: color-mix(in srgb, var(--trust-accent) 38%, transparent); animation: trust-ring-spin 18s linear infinite; }
.trust-gateway__rings i:last-child { inset: 50px; border-color: rgba(122, 100, 199, 0.2); }

.trust-gateway__core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  border: 1px solid color-mix(in srgb, var(--trust-accent) 32%, transparent);
  border-radius: 50%;
  background: rgba(247, 250, 255, 0.74);
  box-shadow: 0 16px 40px rgba(54, 71, 136, 0.12), inset 0 0 24px rgba(255, 255, 255, 0.9);
  transition: box-shadow 600ms var(--ease), transform 600ms var(--ease);
}

.trust-gateway__core small {
  color: #7787aa;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.trust-gateway__core strong {
  margin-top: 6px;
  color: #5e6fb2;
  font-size: 22px;
  font-weight: 450;
}

.trust-gateway__copy {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: 250px;
  color: #71819d;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

.trust-gateway:hover .trust-gateway__core,
.trust-gateway:focus-visible .trust-gateway__core,
.trust-gateway.is-active .trust-gateway__core {
  box-shadow: 0 18px 48px rgba(65, 72, 148, 0.17), 0 0 42px color-mix(in srgb, var(--trust-accent) 24%, transparent), inset 0 0 24px rgba(255, 255, 255, 0.9);
  transform: scale(1.07);
}

.trust-principles {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1280px, calc(100vw - 64px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 74px auto 40px;
  overflow: hidden;
  gap: 1px;
  border: 1px solid rgba(73, 116, 181, 0.12);
  border-radius: 24px;
  background: rgba(91, 132, 192, 0.1);
  box-shadow: 0 28px 80px rgba(39, 76, 130, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.trust-principle {
  position: relative;
  min-height: 170px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(110, 165, 231, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.76));
}

.trust-principle + .trust-principle {
  border-left: 0;
}

.trust-principle > span {
  color: #6d8db8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.trust-principle > i {
  display: block;
  width: 28px;
  height: 1px;
  margin: 19px 0;
  background: linear-gradient(90deg, var(--trust-focus), transparent);
}

.trust-principle h3 {
  margin: 0;
  color: #173c72;
  font-size: 16px;
  font-weight: 580;
  line-height: 1.4;
}

.trust-principle p {
  margin: 10px 0 0;
  color: #687d99;
  font-size: 12px;
  line-height: 1.65;
}

.trust-system__bridge {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(1180px, calc(100vw - 64px));
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 55px auto 0;
  color: #6f91bd;
}

.trust-system__bridge > span {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #6f91bd;
}

.trust-system__bridge b {
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.trust-system__bridge i {
  font-size: 18px;
  font-style: normal;
  animation: trust-next-breathe 2.5s ease-in-out infinite;
}

.trust-system.is-motion-ready .trust-system__intro,
.trust-system.is-motion-ready .trust-system__architecture,
.trust-system.is-motion-ready .trust-principles,
.trust-system.is-motion-ready .trust-system__bridge {
  opacity: 0;
  transition: opacity 860ms var(--reveal-ease), transform 860ms var(--reveal-ease);
}

.trust-system.is-motion-ready .trust-system__intro {
  transform: translateY(18px);
}

.trust-system.is-motion-ready .trust-system__architecture {
  transform: translateY(26px) scale(0.992);
  transition-duration: 940ms;
}

.trust-system.is-motion-ready .trust-principles {
  transform: translateY(21px);
  transition-duration: 900ms;
}

.trust-system.is-motion-ready .trust-system__bridge {
  transform: translateY(15px);
  transition-duration: 780ms;
}

.trust-system.is-motion-ready.is-visible .trust-system__intro,
.trust-system.is-motion-ready.is-visible .trust-system__architecture,
.trust-system.is-motion-ready.is-visible .trust-principles,
.trust-system.is-motion-ready.is-visible .trust-system__bridge {
  opacity: 1;
  transform: translateY(0);
}

.trust-system.is-motion-ready.is-visible .trust-system__architecture { transition-delay: 130ms; }
.trust-system.is-motion-ready.is-visible .trust-principles { transition-delay: 270ms; }
.trust-system.is-motion-ready.is-visible .trust-system__bridge { transition-delay: 380ms; }

@keyframes trust-packet {
  0% { left: 0; opacity: 0; transform: scale(0.6); }
  10% { opacity: 1; }
  48% { opacity: 0.9; transform: scale(1); }
  52% { opacity: 0.45; transform: scale(0.72); }
  90% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; transform: scale(0.6); }
}

@keyframes trust-signal {
  0%, 100% { opacity: 0.38; transform: scaleY(0.72); }
  50% { opacity: 0.9; transform: scaleY(1.08); }
}

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

@keyframes trust-next-breathe {
  0%, 100% { opacity: 0.48; transform: translateY(-2px); }
  50% { opacity: 1; transform: translateY(5px); }
}

@keyframes trust-halo-blue {
  from { opacity: 0.34; transform: translate3d(-7%, 7%, 0) scale(0.95); }
  to { opacity: 0.62; transform: translate3d(14%, -8%, 0) scale(1.12); }
}

@keyframes trust-halo-violet {
  from { opacity: 0.28; transform: translate3d(7%, -5%, 0) scale(0.94); }
  to { opacity: 0.55; transform: translate3d(-13%, 9%, 0) scale(1.11); }
}

@media (max-width: 920px) {
  .trust-system {
    min-height: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .trust-system__architecture {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .trust-system__flow {
    left: 50%;
    right: auto;
    top: 14%;
    bottom: 14%;
    width: 1px;
    height: auto;
  }

  .trust-system__flow-line {
    background: linear-gradient(180deg, rgba(61, 129, 210, 0.18), #70a9e8 28%, #9a8fe1 50%, #61c4d0 74%, rgba(65, 164, 190, 0.18));
  }

  .trust-system__flow-line::before,
  .trust-system__flow-line::after {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .trust-system__flow-line::before { top: 0; }
  .trust-system__flow-line::after { top: auto; right: auto; bottom: 0; }

  .trust-system__packet {
    left: -3px;
    top: 0;
    animation-name: trust-packet-vertical;
  }

  .trust-node {
    width: min(480px, 88%);
    min-height: 250px;
    justify-self: center;
  }

  .trust-gateway {
    width: 160px;
    height: 160px;
  }

  .trust-gateway__copy {
    top: 50%;
    left: calc(100% + 20px);
    width: 190px;
    text-align: left;
    transform: translateY(-50%);
  }

  .trust-principles {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .trust-principle {
    min-height: 140px;
  }

  .trust-principle + .trust-principle {
    border-top: 1px solid rgba(73, 116, 181, 0.1);
    border-left: 0;
  }
}

@keyframes trust-packet-vertical {
  0% { top: 0; opacity: 0; transform: scale(0.6); }
  10% { opacity: 1; }
  48% { opacity: 0.9; transform: scale(1); }
  52% { opacity: 0.45; transform: scale(0.72); }
  90% { opacity: 1; }
  100% { top: calc(100% - 7px); opacity: 0; transform: scale(0.6); }
}

@media (max-width: 620px) {
  .trust-system {
    padding: 0 18px;
  }

  .trust-system__intro {
    margin-bottom: 48px;
  }

  .trust-system__intro h2 {
    font-size: clamp(33px, 9.5vw, 44px);
  }

  .trust-node {
    width: 100%;
    min-height: 230px;
    padding: 32px 28px;
  }

  .trust-gateway__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 230px;
    margin-top: 188px;
    text-align: center;
    transform: none;
  }

  .trust-principles {
    margin-top: 58px;
    border-radius: 20px;
  }

  .trust-principle {
    padding: 27px 25px;
  }

  .trust-system__bridge {
    width: 100%;
    align-items: flex-end;
    flex-direction: column;
    margin-top: 42px;
  }
}

/* Real productivity / fifth-screen application console */
.real-work {
  --work-focus: #70bfff;
  position: relative;
  min-height: max(1080px, 100vh);
  min-height: max(1080px, 100svh);
  overflow: hidden;
  padding: clamp(118px, 11vh, 152px) 32px 144px;
  isolation: isolate;
  color: #f5f8ff;
  background:
    radial-gradient(circle at 50% 34%, rgba(48, 100, 184, 0.24), transparent 32%),
    linear-gradient(180deg, #071a3a 0%, #061735 24%, #04132f 100%);
}

.real-work::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(145, 181, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 181, 235, 0.035) 1px, transparent 1px),
    radial-gradient(circle, rgba(151, 198, 255, 0.24) 0 0.7px, transparent 0.9px);
  background-size: 72px 72px, 72px 72px, 142px 126px;
  background-position: center 18%, center 18%, 33px 64px;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, transparent 4%, #000 25%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 4%, #000 25%, #000 88%, transparent 100%);
}

.real-work::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  z-index: -3;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgba(137, 177, 236, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(119, 154, 220, 0.018),
    0 0 0 14vw rgba(152, 112, 221, 0.012);
  pointer-events: none;
}

.real-work__mesh {
  position: absolute;
  left: 50%;
  top: 56%;
  z-index: -2;
  width: min(1480px, 96vw);
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(56, 115, 206, 0.12), transparent 68%);
  filter: blur(26px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.real-work__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.38;
  pointer-events: none;
  will-change: transform, opacity;
}

.real-work__glow--blue {
  left: -8vw;
  top: 34%;
  width: 35vw;
  height: 35vw;
  background: rgba(54, 143, 255, 0.28);
  animation: work-glow-blue 18s ease-in-out infinite alternate;
}

.real-work__glow--violet {
  right: -5vw;
  top: 20%;
  width: 31vw;
  height: 31vw;
  background: rgba(143, 89, 225, 0.2);
  animation: work-glow-violet 22s ease-in-out infinite alternate;
}

.real-work__glow--gold {
  right: 18%;
  bottom: -12vw;
  width: 28vw;
  height: 28vw;
  background: rgba(222, 167, 76, 0.14);
  animation: work-glow-gold 20s ease-in-out infinite alternate;
}

.real-work__intro {
  position: relative;
  z-index: 3;
  width: min(960px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.real-work__eyebrow {
  margin: 0 0 24px;
  color: #91b8ec;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 650;
  letter-spacing: 0.23em;
  line-height: 1.5;
}

.real-work__intro h2 {
  margin: 0;
  color: #f7faff;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 480;
  letter-spacing: -0.052em;
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 12px 42px rgba(1, 11, 31, 0.36);
}

.real-work__console {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1400px, calc(100vw - 64px));
  min-height: 650px;
  grid-template-columns: 310px minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(174, 207, 255, 0.16);
  border-radius: 30px;
  background: rgba(6, 24, 55, 0.68);
  box-shadow:
    0 42px 120px rgba(0, 8, 25, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 0 80px color-mix(in srgb, var(--work-focus) 8%, transparent);
  -webkit-backdrop-filter: blur(28px) saturate(116%);
  backdrop-filter: blur(28px) saturate(116%);
  transition: box-shadow 700ms var(--ease);
}

.real-work__console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.065), transparent 21%, transparent 75%, color-mix(in srgb, var(--work-focus) 8%, transparent));
  pointer-events: none;
}

.real-work__rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 34px 22px 28px;
  border-right: 1px solid rgba(167, 202, 255, 0.1);
  background: linear-gradient(180deg, rgba(13, 42, 82, 0.62), rgba(4, 19, 46, 0.44));
}

.real-work__rail-label {
  margin: 2px 16px 26px;
  color: #637fa8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.work-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 94px;
  grid-template-columns: 35px 1fr 10px;
  gap: 12px;
  align-items: center;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: transparent;
  color: #7e95b8;
  cursor: pointer;
  text-align: left;
  transition: color 520ms var(--ease), border-color 520ms var(--ease), background 520ms var(--ease), transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.work-tab + .work-tab {
  margin-top: 5px;
}

.work-tab__index {
  color: color-mix(in srgb, var(--work-accent) 58%, #7084a4);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
}

.work-tab__copy {
  display: grid;
  gap: 7px;
}

.work-tab__copy strong {
  color: #bdcce3;
  font-size: 17px;
  font-weight: 560;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 520ms var(--ease);
}

.work-tab__copy small {
  color: #647c9f;
  font-size: 11px;
  line-height: 1.35;
  transition: color 520ms var(--ease);
}

.work-tab > i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(136, 165, 207, 0.42);
  border-radius: 50%;
  transition: background 520ms var(--ease), border-color 520ms var(--ease), box-shadow 520ms var(--ease), transform 520ms var(--ease);
}

.work-tab:hover,
.work-tab:focus-visible,
.work-tab.is-active {
  border-color: color-mix(in srgb, var(--work-accent) 24%, transparent);
  background: linear-gradient(100deg, color-mix(in srgb, var(--work-accent) 12%, transparent), rgba(255, 255, 255, 0.025));
  color: var(--work-accent);
  outline: none;
  transform: translateX(3px);
}

.work-tab.is-active {
  box-shadow: inset 3px 0 0 color-mix(in srgb, var(--work-accent) 76%, #fff), 0 14px 34px rgba(0, 7, 24, 0.17);
}

.work-tab:hover .work-tab__copy strong,
.work-tab:focus-visible .work-tab__copy strong,
.work-tab.is-active .work-tab__copy strong {
  color: #f3f7ff;
}

.work-tab.is-active .work-tab__copy small {
  color: color-mix(in srgb, var(--work-accent) 66%, #9db0cc);
}

.work-tab.is-active > i {
  border-color: var(--work-accent);
  background: var(--work-accent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--work-accent) 72%, transparent);
  transform: scale(1.12);
}

.real-work__rail-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: auto 15px 0;
  color: #536f98;
}

.real-work__rail-status span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--work-focus), transparent);
}

.real-work__rail-status b {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.real-work__stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(42px, 5vw, 70px) clamp(38px, 5.5vw, 82px) 52px;
}

.real-work__stage::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--work-focus) 14%, transparent), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  transition: background 700ms var(--ease);
}

.work-panel {
  position: relative;
  min-height: 540px;
  animation: work-panel-enter 680ms var(--ease) both;
}

.work-panel[hidden] {
  display: none;
}

.work-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: color-mix(in srgb, var(--work-focus) 70%, #8599b8);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.work-panel__topline b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6982a7;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.work-panel__topline b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68ddb2;
  box-shadow: 0 0 12px rgba(104, 221, 178, 0.72);
  animation: work-status-pulse 2.8s ease-in-out infinite;
}

.work-panel h3 {
  max-width: 880px;
  margin: 35px 0 30px;
  color: #f6f9ff;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 470;
  letter-spacing: -0.046em;
  line-height: 1.2;
  text-wrap: balance;
}

.work-brief {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 930px;
  padding: 19px 22px;
  border: 1px solid rgba(159, 195, 246, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.work-brief > span,
.work-output > span {
  padding-top: 3px;
  color: #6f89ae;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.work-brief p {
  margin: 0;
  color: #bccbe0;
  font-size: 15px;
  line-height: 1.72;
}

.work-trace {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 44px;
}

.work-trace::before,
.work-trace::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 28px;
  height: 1px;
}

.work-trace::before {
  background: rgba(117, 148, 193, 0.22);
}

.work-trace::after {
  background: linear-gradient(90deg, transparent, var(--work-focus) 10%, color-mix(in srgb, var(--work-focus) 82%, #fff) 88%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--work-focus) 32%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: work-trace-flow 2.8s 180ms var(--ease) forwards;
}

.work-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.work-step > span {
  order: 1;
  margin-bottom: 13px;
  color: #57749f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.work-step > i {
  position: relative;
  order: 2;
  width: 13px;
  height: 13px;
  margin-bottom: 19px;
  border: 1px solid color-mix(in srgb, var(--work-focus) 64%, #8196b7);
  border-radius: 50%;
  background: #0a2248;
  box-shadow: 0 0 0 6px rgba(8, 28, 63, 0.92);
  animation: work-node-awaken 600ms var(--ease) both;
}

.work-step:nth-child(2) > i { animation-delay: 720ms; }
.work-step:nth-child(3) > i { animation-delay: 1320ms; }
.work-step:nth-child(4) > i { animation-delay: 1920ms; }

.work-step strong {
  order: 3;
  color: #dce7f7;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.35;
}

.work-step small {
  order: 4;
  max-width: 160px;
  margin-top: 8px;
  color: #667f9f;
  font-size: 11px;
  line-height: 1.5;
}

.work-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(137, 173, 225, 0.1);
}

.work-output div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.work-output strong {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--work-focus) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--work-focus) 7%, transparent);
  color: color-mix(in srgb, var(--work-focus) 52%, #e8f1ff);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.real-work.is-motion-ready .real-work__intro,
.real-work.is-motion-ready .real-work__console {
  opacity: 0;
  transition: opacity 880ms var(--reveal-ease), transform 880ms var(--reveal-ease);
}

.real-work.is-motion-ready .real-work__intro {
  transform: translateY(18px);
}

.real-work.is-motion-ready .real-work__console {
  transform: translateY(28px) scale(0.992);
  transition-duration: 980ms;
}

.real-work.is-motion-ready.is-visible .real-work__intro,
.real-work.is-motion-ready.is-visible .real-work__console {
  opacity: 1;
  transform: translateY(0);
}

.real-work.is-motion-ready.is-visible .real-work__console {
  transition-delay: 160ms;
}

@keyframes work-panel-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes work-trace-flow {
  0% { opacity: 0; transform: scaleX(0); }
  18% { opacity: 1; }
  100% { opacity: 0.82; transform: scaleX(1); }
}

@keyframes work-node-awaken {
  0% { background: #0a2248; box-shadow: 0 0 0 6px rgba(8, 28, 63, 0.92); transform: scale(0.72); }
  55% { background: var(--work-focus); box-shadow: 0 0 0 6px rgba(8, 28, 63, 0.92), 0 0 22px color-mix(in srgb, var(--work-focus) 76%, transparent); transform: scale(1.25); }
  100% { background: var(--work-focus); box-shadow: 0 0 0 6px rgba(8, 28, 63, 0.92), 0 0 13px color-mix(in srgb, var(--work-focus) 54%, transparent); transform: scale(1); }
}

@keyframes work-status-pulse {
  0%, 100% { opacity: 0.62; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes work-glow-blue {
  from { opacity: 0.28; transform: translate3d(-8%, 7%, 0) scale(0.94); }
  to { opacity: 0.48; transform: translate3d(15%, -8%, 0) scale(1.12); }
}

@keyframes work-glow-violet {
  from { opacity: 0.22; transform: translate3d(8%, -5%, 0) scale(0.96); }
  to { opacity: 0.42; transform: translate3d(-14%, 10%, 0) scale(1.13); }
}

@keyframes work-glow-gold {
  from { opacity: 0.16; transform: translate3d(9%, 5%, 0) scale(0.94); }
  to { opacity: 0.34; transform: translate3d(-11%, -9%, 0) scale(1.1); }
}

@media (max-width: 1040px) {
  .real-work {
    min-height: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .real-work__console {
    width: min(920px, 100%);
    grid-template-columns: 1fr;
  }

  .real-work__rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 8px;
    overflow-x: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(167, 202, 255, 0.1);
    scrollbar-width: none;
  }

  .real-work__rail::-webkit-scrollbar { display: none; }
  .real-work__rail-label,
  .real-work__rail-status { display: none; }

  .work-tab {
    min-width: 165px;
    min-height: 80px;
    grid-template-columns: 29px 1fr 8px;
    padding: 13px 12px;
  }

  .work-tab + .work-tab { margin-top: 0; }
  .work-tab:hover,
  .work-tab:focus-visible,
  .work-tab.is-active { transform: translateY(-2px); }
}

@media (max-width: 700px) {
  .real-work {
    padding: 132px 18px 96px;
  }

  .real-work__intro {
    margin-bottom: 44px;
  }

  .real-work__intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .real-work__console {
    width: 100%;
    border-radius: 22px;
  }

  .real-work__stage {
    padding: 34px 24px 38px;
  }

  .work-panel {
    min-height: 690px;
  }

  .work-panel__topline b span {
    display: none;
  }

  .work-panel h3 {
    margin: 28px 0 24px;
    font-size: clamp(29px, 8vw, 38px);
  }

  .work-brief {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 18px;
  }

  .work-trace {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 38px 0;
  }

  .work-trace::before,
  .work-trace::after {
    left: 25px;
    right: auto;
    top: 21px;
    bottom: 21px;
    width: 1px;
    height: auto;
  }

  .work-trace::after {
    transform: scaleY(0);
    transform-origin: top;
    animation-name: work-trace-flow-mobile;
  }

  .work-step {
    grid-template-columns: 24px 18px 1fr;
    grid-template-rows: auto auto;
    gap: 3px 14px;
    justify-items: start;
    padding: 0;
    text-align: left;
  }

  .work-step > span {
    grid-row: 1 / -1;
    margin: 5px 0 0;
  }

  .work-step > i {
    grid-row: 1 / -1;
    margin: 2px 0 0;
  }

  .work-step strong,
  .work-step small {
    grid-column: 3;
  }

  .work-step small {
    max-width: none;
    margin-top: 2px;
  }

  .work-output {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .work-output div {
    justify-content: flex-start;
  }
}

@keyframes work-trace-flow-mobile {
  0% { opacity: 0; transform: scaleY(0); }
  18% { opacity: 1; }
  100% { opacity: 0.82; transform: scaleY(1); }
}

/* Real productivity capability index */
.real-work__intro {
  display: grid;
  width: min(1400px, calc(100vw - 64px));
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  margin-bottom: 58px;
  text-align: left;
}

.real-work__intro h2 {
  max-width: 880px;
}

.real-work__rating-note {
  position: relative;
  display: grid;
  gap: 11px;
  padding: 24px 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(158, 195, 247, 0.14);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(75, 121, 190, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.real-work__rating-note::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--work-focus) 12%, transparent);
  filter: blur(24px);
  pointer-events: none;
}

.real-work__rating-note > span {
  color: #9fc4f3;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.real-work__rating-note p {
  margin: 0;
  color: #91a5c1;
  font-size: 12px;
  line-height: 1.7;
}

.real-work__rating-note div {
  display: flex;
  gap: 6px;
  color: #e8b865;
  font-size: 13px;
  opacity: 0.9;
}

.real-work__rating-note i {
  font-style: normal;
}

.real-work__console {
  min-height: 744px;
  grid-template-columns: 318px minmax(0, 1fr);
}

.real-work__rail {
  padding: 29px 20px 25px;
}

.real-work__rail-label {
  margin-bottom: 18px;
}

.work-tab {
  min-height: 76px;
  padding: 12px 13px;
}

.work-tab__copy {
  gap: 5px;
}

.work-tab__copy strong {
  font-size: 16px;
}

.real-work__stage {
  padding: clamp(39px, 4.2vw, 58px) clamp(35px, 4.6vw, 68px) 44px;
}

.work-panel {
  min-height: 640px;
}

.capability-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(138, 174, 226, 0.11);
  transform: translateY(-10px);
}

.capability-panel__head > div > span {
  color: color-mix(in srgb, var(--work-focus) 70%, #7d93b3);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.capability-panel__head h3 {
  max-width: none;
  margin: 16px 0 11px;
  color: #f5f9ff;
  font-size: clamp(30px, 2.7vw, 43px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.capability-panel__head p {
  max-width: 720px;
  margin: 0;
  color: #8fa5c3;
  font-size: 13px;
  line-height: 1.7;
}

.capability-panel__head > b {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 4px;
  padding: 8px 11px;
  border: 1px solid rgba(104, 221, 178, 0.16);
  border-radius: 999px;
  background: rgba(104, 221, 178, 0.055);
  color: #7fae9f;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.capability-panel__head > b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68ddb2;
  box-shadow: 0 0 12px rgba(104, 221, 178, 0.62);
  animation: work-status-pulse 2.8s ease-in-out infinite;
}

.capability-table {
  margin-top: 24px;
}

.capability-table__head,
.capability-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 1.35fr) 218px;
  gap: 24px;
  align-items: center;
}

.capability-table__head {
  min-height: 34px;
  padding: 0 18px;
  color: #5d779d;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.17em;
}

.capability-row {
  position: relative;
  min-height: 104px;
  padding: 18px;
  border-top: 1px solid rgba(131, 168, 221, 0.09);
  transition: background 420ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease);
}

.capability-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  border-radius: 3px;
  background: var(--work-focus);
  box-shadow: 0 0 12px color-mix(in srgb, var(--work-focus) 42%, transparent);
  opacity: 0;
  transform: scaleY(0.5);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.capability-row:hover {
  border-color: color-mix(in srgb, var(--work-focus) 17%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--work-focus) 7%, transparent), rgba(255, 255, 255, 0.018));
  transform: translateX(3px);
}

.capability-row:hover::before {
  opacity: 0.8;
  transform: scaleY(1);
}

.capability-row > strong {
  color: #dfe9f8;
  font-size: 15px;
  font-weight: 570;
  line-height: 1.45;
}

.capability-row > p {
  margin: 0;
  color: #7890b1;
  font-size: 12px;
  line-height: 1.65;
}

.capability-rating {
  display: grid;
  grid-template-columns: 86px 38px minmax(68px, auto);
  gap: 9px;
  align-items: center;
  justify-content: end;
}

.capability-rating > span {
  position: relative;
  display: block;
  width: 82px;
  height: 19px;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 19px;
  white-space: nowrap;
}

.capability-rating > span::before,
.capability-rating > span::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
}

.capability-rating > span::before {
  color: rgba(129, 155, 194, 0.24);
}

.capability-rating > span::after {
  width: 0;
  overflow: hidden;
  color: #e5b45f;
  text-shadow: 0 0 12px rgba(229, 180, 95, 0.2);
}

.capability-rating > span[style*="--rating:3"]::after { width: 60%; }
.capability-rating > span[style*="--rating:4"]::after { width: 80%; }
.capability-rating > span[style*="--rating:5"]::after { width: 100%; }

.capability-rating > b {
  color: #dce7f7;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.capability-rating > small {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--work-focus) 16%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--work-focus) 5%, transparent);
  color: color-mix(in srgb, var(--work-focus) 56%, #aabbd2);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .real-work__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .real-work__rating-note {
    width: min(700px, 100%);
  }

  .capability-table__head,
  .capability-row {
    grid-template-columns: minmax(190px, 0.9fr) minmax(240px, 1.2fr) 196px;
    gap: 18px;
  }

  .capability-rating {
    grid-template-columns: 82px 34px;
  }

  .capability-rating > small {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 1040px) {
  .real-work__intro {
    width: min(920px, 100%);
  }

  .real-work__rail {
    grid-template-columns: repeat(7, minmax(160px, 1fr));
  }

  .real-work__stage {
    padding: 42px 36px 44px;
  }
}

@media (max-width: 760px) {
  .real-work__intro {
    margin-bottom: 38px;
  }

  .real-work__rating-note {
    padding: 20px;
  }

  .real-work__stage {
    padding: 31px 20px 32px;
  }

  .work-panel {
    min-height: 0;
  }

  .capability-panel__head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 14px;
  }

  .capability-panel__head > b {
    justify-self: start;
  }

  .capability-table__head {
    display: none;
  }

  .capability-table {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(131, 168, 221, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.022);
  }

  .capability-rating {
    grid-template-columns: 82px 38px minmax(68px, auto);
    justify-content: start;
    margin-top: 8px;
  }

  .capability-rating > small {
    grid-column: auto;
    justify-self: auto;
  }
}

@media (max-width: 430px) {
  .capability-rating {
    grid-template-columns: 82px 38px;
  }

  .capability-rating > small {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(10, 35, 78, 0.03);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 390px) 1fr;
  gap: clamp(80px, 10vw, 160px);
  width: min(1430px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 58px;
  transform: translateX(60px);
}

.footer-brand img {
  width: 178px;
  height: auto;
  margin-bottom: 34px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
  margin-left: 10px;
}

.social-links a,
.social-links > .social-link {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: #98a7bd;
}

.social-links > .social-link {
  cursor: not-allowed;
  opacity: 0.68;
}

.social-links a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-links a[aria-label="QQ"] svg,
.social-links .social-link[aria-label^="QQ"] svg {
  width: 20px;
  height: 20px;
}

.social-links > * > span {
  display: inline-grid;
  min-width: 25px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: #98a7bd;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 0 3px;
}

.social-links a:hover span {
  background: var(--blue);
}

.copyright,
.record-link {
  display: block;
  color: #8ea0bb;
  font-size: 14px;
  line-height: 1.6;
}

.copyright {
  margin: 0 0 12px;
  margin-left: 10px;
}

.record-link {
  margin-top: 8px;
  margin-left: 10px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 54px;
  color: #09235f;
}

.footer-column {
  text-align: center;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #09235f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  color: #1c2e52;
  font-size: 15px;
  line-height: 1.35;
}

@keyframes light-breath {
  0% {
    opacity: 0.32;
    transform: translate3d(-1.3%, -0.2%, 0) scale(1.046);
  }

  100% {
    opacity: 0.48;
    transform: translate3d(3.3%, -1.8%, 0) scale(1.084);
  }
}

@keyframes glow-drift-one {
  0% {
    opacity: 0.38;
    transform: translate3d(-8%, 10%, 0) scale(0.9);
  }

  100% {
    opacity: 0.96;
    transform: translate3d(16%, -10%, 0) scale(1.2);
  }
}

@keyframes glow-drift-two {
  0% {
    opacity: 0.34;
    transform: translate3d(8%, -7%, 0) scale(0.96);
  }

  100% {
    opacity: 0.94;
    transform: translate3d(-12%, 7%, 0) scale(1.16);
  }
}

@keyframes veil-flow {
  0% {
    opacity: 0.28;
    transform: translate3d(0.3%, -0.1%, 0) rotate(0.08deg) scale(1.033);
  }

  100% {
    opacity: 0.46;
    transform: translate3d(2.7%, -0.9%, 0) rotate(0.62deg) scale(1.057);
  }
}

@keyframes hero-gradient-breath {
  0% {
    background-position: 16% 83%, 85% 17%, 2% 12%, 60% -2%, 95% 82%, 0 0;
  }

  25% {
    background-position: 26% 72%, 76% 24%, 12% 18%, 68% 6%, 86% 74%, 0 0;
  }

  50% {
    background-position: 40% 60%, 60% 38%, 22% 4%, 42% 24%, 72% 62%, 0 0;
  }

  75% {
    background-position: 22% 76%, 78% 20%, 4% 24%, 30% 4%, 94% 80%, 0 0;
  }

  100% {
    background-position: 18% 82%, 83% 18%, 6% 21%, 49% 2%, 95% 77%, 0 0;
  }
}

@keyframes glow-pulse-center {
  0% {
    opacity: 0.16;
    transform: translate3d(-4%, 4%, 0) scale(0.96);
  }

  100% {
    opacity: 0.44;
    transform: translate3d(4%, -3%, 0) scale(1.08);
  }
}

@keyframes glow-drift-four {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(-10%, -4%, 0) scale(0.92);
  }

  25% {
    opacity: 0.76;
    transform: translate3d(8%, 6%, 0) scale(1.1);
  }

  50% {
    opacity: 0.34;
    transform: translate3d(16%, 14%, 0) scale(1.18);
  }

  75% {
    opacity: 0.46;
    transform: translate3d(2%, 8%, 0) scale(1.04);
  }
}

@keyframes glow-drift-six {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(-8%, -4%, 0) scale(0.94);
  }

  25% {
    opacity: 0.48;
    transform: translate3d(6%, 8%, 0) scale(1.1);
  }

  50% {
    opacity: 0.3;
    transform: translate3d(14%, 14%, 0) scale(1.16);
  }

  75% {
    opacity: 0.56;
    transform: translate3d(2%, 5%, 0) scale(1.04);
  }
}

@keyframes glow-drift-five {
  0%,
  100% {
    opacity: 0.14;
    transform: translate3d(12%, 8%, 0) scale(0.92);
  }

  25% {
    opacity: 0.22;
    transform: translate3d(2%, 2%, 0) scale(1.02);
  }

  50% {
    opacity: 0.5;
    transform: translate3d(-10%, -8%, 0) scale(1.16);
  }

  75% {
    opacity: 0.68;
    transform: translate3d(-4%, -12%, 0) scale(1.08);
  }
}

@keyframes aurora-flow {
  0% {
    opacity: 0.53;
    transform: translate3d(-8.3%, 3.3%, 0) rotate(-3.2deg) scale(0.99);
  }

  30% {
    opacity: 0.72;
    transform: translate3d(-2%, -3%, 0) rotate(5deg) scale(1.04);
  }

  58% {
    opacity: 0.86;
    transform: translate3d(7%, -6%, 0) rotate(15deg) scale(1.1);
  }

  78% {
    opacity: 0.6;
    transform: translate3d(12%, -8%, 0) rotate(24deg) scale(1.14);
  }

  100% {
    opacity: 0.51;
    transform: translate3d(11%, -7%, 0) rotate(22deg) scale(1.125);
  }
}

@keyframes vortex-roll-outer {
  0% {
    opacity: 0.24;
    transform: translate3d(-56%, -45%, 0) rotate(0deg) scale(0.92);
  }

  18% {
    opacity: 0.5;
    transform: translate3d(-50%, -52%, 0) rotate(70deg) scale(1.04);
  }

  35% {
    opacity: 0.34;
    transform: translate3d(-47%, -54%, 0) rotate(126deg) scale(1.08);
  }

  52% {
    opacity: 0.54;
    transform: translate3d(-42%, -47%, 0) rotate(188deg) scale(1.02);
  }

  68% {
    opacity: 0.3;
    transform: translate3d(-43%, -42%, 0) rotate(245deg) scale(1);
  }

  84% {
    opacity: 0.46;
    transform: translate3d(-50%, -40%, 0) rotate(304deg) scale(1.08);
  }

  100% {
    opacity: 0.24;
    transform: translate3d(-56%, -45%, 0) rotate(360deg) scale(0.92);
  }
}

@keyframes vortex-roll-inner {
  0% {
    opacity: 0.2;
    transform: translate3d(-44%, -57%, 0) rotate(0deg) scale(1.12);
  }

  20% {
    opacity: 0.44;
    transform: translate3d(-52%, -50%, 0) rotate(-74deg) scale(1.02);
  }

  42% {
    opacity: 0.28;
    transform: translate3d(-57%, -43%, 0) rotate(-154deg) scale(0.96);
  }

  58% {
    opacity: 0.5;
    transform: translate3d(-53%, -39%, 0) rotate(-210deg) scale(1.06);
  }

  76% {
    opacity: 0.3;
    transform: translate3d(-48%, -38%, 0) rotate(-274deg) scale(1.08);
  }

  100% {
    opacity: 0.2;
    transform: translate3d(-44%, -57%, 0) rotate(-360deg) scale(1.12);
  }
}

@keyframes beam-sweep-one {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(8deg) scaleX(0.9);
  }

  18% {
    opacity: 0.22;
  }

  58% {
    opacity: 0.16;
  }

  100% {
    opacity: 0;
    transform: translate3d(190vw, -4%, 0) rotate(8deg) scaleX(1.14);
  }
}

@keyframes beam-sweep-two {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-10deg) scaleX(0.92);
  }

  22% {
    opacity: 0.18;
  }

  62% {
    opacity: 0.14;
  }

  100% {
    opacity: 0;
    transform: translate3d(-176vw, 5%, 0) rotate(-10deg) scaleX(1.12);
  }
}

@keyframes page-vortex {
  0% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.84;
    transform: rotate(180deg) scale(1.08);
  }

  100% {
    opacity: 0.6;
    transform: rotate(360deg) scale(1);
  }
}

@keyframes soft-mist-one {
  0% {
    opacity: 0.44;
    transform: translate3d(-8%, 8%, 0) scale(0.96);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(16%, -10%, 0) scale(1.14);
  }
}

@keyframes soft-mist-two {
  0% {
    opacity: 0.38;
    transform: translate3d(10%, -8%, 0) scale(0.96);
  }

  100% {
    opacity: 0.72;
    transform: translate3d(-14%, 8%, 0) scale(1.12);
  }
}

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

  a,
  button,
  .action-card,
  .video-cover img,
  .play-button {
    transition-duration: 0.001ms !important;
  }

  .brand-showcase__frame::before,
  .brand-showcase__frame::after,
  .brand-showcase__portrait,
  .brand-showcase__wave,
  .brand-showcase__mist,
  .brand-showcase::before,
  .genesis-sky,
  .genesis-horizon,
  .genesis-orbit,
  .genesis-ripple {
    animation: none !important;
  }

  .brand-showcase__mist {
    opacity: 0.14;
  }

  .genesis-intro,
  .genesis-epilogue,
  .brand-showcase__frame,
  .genesis-node {
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .mind-atlas::before,
  .mind-atlas__aurora,
  .mind-path,
  .mind-atlas__orbit,
  .mind-core,
  .mind-core::before,
  .mind-core__halo,
  .mind-branch__progress i,
  .mind-atlas__legend i,
  .mind-stage::before,
  .mind-journey {
    animation: none !important;
  }

  .mind-atlas__intro,
  .mind-atlas__map,
  .mind-narratives,
  .mind-branch,
  .mind-path {
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .real-work__glow,
  .work-panel,
  .work-panel__topline b i,
  .work-trace::after,
  .work-step > i {
    animation: none !important;
  }

  .trust-system__halo,
  .trust-system__packet,
  .trust-node__signal i,
  .trust-gateway__rings i,
  .trust-system__bridge i {
    animation: none !important;
  }

  .trust-system__intro,
  .trust-system__architecture,
  .trust-principles,
  .trust-system__bridge,
  .trust-node,
  .trust-gateway__core {
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .trust-system.is-motion-ready .trust-system__intro,
  .trust-system.is-motion-ready .trust-system__architecture,
  .trust-system.is-motion-ready .trust-principles,
  .trust-system.is-motion-ready .trust-system__bridge {
    opacity: 1;
    transform: none;
  }

  .real-work__intro,
  .real-work__console,
  .work-tab {
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .real-work.is-motion-ready .real-work__intro,
  .real-work.is-motion-ready .real-work__console {
    opacity: 1;
    transform: none;
  }

  .work-trace::after {
    opacity: 0.72;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 22px;
    margin-left: 36px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    margin-top: 52px;
    padding-bottom: 82px;
  }

  .video-card {
    justify-self: center;
    width: min(560px, 100%);
    margin-top: 0;
    transform: none;
  }

  .footer-inner {
    gap: 70px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .auth-layout,
  .auth-layout--compact,
  .auth-layout--single {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(720px, calc(100% - 48px));
    margin-top: 74px;
  }

  .detail-article {
    margin-top: 72px;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
  }

  .site-header--shared {
    align-items: flex-start;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    gap: clamp(18px, 5vw, 30px);
    margin: 10px 0 0;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }
}

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

  .site-header {
    height: auto;
    padding: 16px 18px 0;
  }

  .brand,
  .brand img {
    width: 146px;
  }

  .top-actions {
    gap: 14px;
    font-size: 13px;
  }

  .primary-nav__item {
    font-size: 15px;
  }

  .site-header--shared {
    align-items: flex-start;
  }

  .hero__content {
    width: min(100% - 34px, 560px);
    margin-top: 48px;
    padding-bottom: 68px;
  }

  .notice {
    margin-bottom: 44px;
    font-size: 13px;
  }

  .hero-title {
    width: min(390px, 100%);
  }

  .hero-subtitle {
    margin: 22px 0 42px;
    font-size: 24px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .action-card {
    min-height: 112px;
    padding: 24px 26px;
  }

  .video-controls {
    grid-template-columns: 12px 1fr 10px 14px 13px;
    gap: 10px;
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(100% - 34px, 560px);
    padding: 48px 0;
    transform: none;
  }

  .soft-hero {
    min-height: auto;
  }

  .auth-layout,
  .auth-layout--compact,
  .auth-layout--single {
    width: min(100% - 34px, 560px);
    margin: 58px auto 64px;
  }

  .auth-copy h1,
  .detail-article h1 {
    font-size: 34px;
  }

  .form-panel {
    border-radius: 14px;
  }

  .xl-form {
    padding: 24px;
  }

  .detail-hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .detail-article {
    width: min(100% - 34px, 560px);
    margin-top: 58px;
    padding: 34px 24px 42px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 136px;
  }

  .top-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    max-width: 210px;
  }

  .primary-nav {
    gap: 20px;
  }

  .notice {
    line-height: 1.7;
  }

  .hero-title {
    width: min(330px, 100%);
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .typewriter-text {
    white-space: normal;
  }

  .action-card__title {
    font-size: 20px;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .play-button span {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 19px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .auth-copy h1,
  .detail-article h1 {
    font-size: 30px;
  }

  .auth-copy p:not(.eyebrow),
  .article-lead {
    font-size: 15px;
  }

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

  .article-body h2 {
    font-size: 21px;
  }

  .article-body blockquote {
    font-size: 17px;
    padding: 18px 20px;
  }
}

/* Real productivity / light capability directory */
.real-work {
  color: #17366e;
  background:
    radial-gradient(circle at 12% 24%, rgba(112, 191, 255, 0.13), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(158, 145, 255, 0.1), transparent 28%),
    radial-gradient(circle at 76% 90%, rgba(225, 184, 106, 0.08), transparent 25%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 27%, #fbfdff 100%);
}

.real-work::before {
  background:
    linear-gradient(rgba(39, 81, 151, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 81, 151, 0.035) 1px, transparent 1px),
    radial-gradient(circle, rgba(81, 128, 198, 0.16) 0 0.7px, transparent 0.9px);
  opacity: 0.58;
  -webkit-mask-image: linear-gradient(180deg, transparent 3%, #000 22%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 3%, #000 22%, #000 88%, transparent 100%);
}

.real-work::after {
  border-color: rgba(68, 108, 173, 0.055);
  box-shadow:
    0 0 0 7vw rgba(98, 151, 224, 0.018),
    0 0 0 14vw rgba(152, 112, 221, 0.012);
}

.real-work__mesh {
  background: radial-gradient(ellipse, rgba(83, 147, 231, 0.09), transparent 68%);
  opacity: 0.72;
}

.real-work__glow--blue { background: rgba(83, 168, 255, 0.18); }
.real-work__glow--violet { background: rgba(151, 113, 225, 0.13); }
.real-work__glow--gold { background: rgba(222, 167, 76, 0.09); }

.real-work__eyebrow {
  color: #6686bd;
}

.real-work__intro h2 {
  color: #102a63;
  text-shadow: none;
}

.real-work__catalog-status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  align-self: start;
  gap: 10px;
  margin-top: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(40, 83, 155, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 36px rgba(48, 89, 154, 0.07);
  color: #7890b5;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.14em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.real-work__catalog-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--work-focus);
  box-shadow: 0 0 12px color-mix(in srgb, var(--work-focus) 58%, transparent);
  animation: horizon-status-pulse 4s ease-in-out infinite;
}

.real-work__catalog-status b {
  font: inherit;
}

.real-work__rating-note {
  border-color: rgba(57, 96, 160, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.76));
  box-shadow: 0 18px 48px rgba(53, 90, 149, 0.08), inset 0 1px 0 #fff;
}

.real-work__rating-note > span { color: #5276ad; }
.real-work__rating-note p { color: #7184a2; }

.real-work__console {
  border-color: rgba(48, 88, 151, 0.11);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 38px 110px rgba(42, 76, 134, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 74px color-mix(in srgb, var(--work-focus) 6%, transparent);
  -webkit-backdrop-filter: blur(28px) saturate(108%);
  backdrop-filter: blur(28px) saturate(108%);
}

.real-work__console::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), transparent 24%, transparent 74%, color-mix(in srgb, var(--work-focus) 5%, transparent));
}

.real-work__rail {
  border-right-color: rgba(55, 93, 153, 0.09);
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.94), rgba(237, 245, 255, 0.72));
}

.real-work__rail-label,
.real-work__rail-status { color: #8b9bb4; }

.work-tab { color: #8292ab; }
.work-tab__copy strong { color: #52698d; }
.work-tab__copy small { color: #94a3b9; }
.work-tab > i { border-color: rgba(65, 99, 152, 0.28); }

.work-tab:hover,
.work-tab:focus-visible,
.work-tab.is-active {
  background: linear-gradient(100deg, color-mix(in srgb, var(--work-accent) 9%, #fff), rgba(255, 255, 255, 0.68));
  box-shadow: inset 3px 0 0 color-mix(in srgb, var(--work-accent) 72%, #fff), 0 13px 31px rgba(47, 78, 130, 0.07);
}

.work-tab:hover .work-tab__copy strong,
.work-tab:focus-visible .work-tab__copy strong,
.work-tab.is-active .work-tab__copy strong { color: #17366e; }

.work-tab.is-active .work-tab__copy small {
  color: color-mix(in srgb, var(--work-accent) 50%, #6d7f9c);
}

.real-work__stage {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(246, 250, 255, 0.36));
}

.real-work__stage::before {
  background: radial-gradient(circle, color-mix(in srgb, var(--work-focus) 9%, transparent), transparent 68%);
}

.capability-panel__head {
  border-bottom-color: rgba(67, 104, 164, 0.1);
}

.capability-panel__head h3 { color: #17366e; }
.capability-panel__head p { color: #7185a4; }

.capability-panel__head > b {
  border-color: rgba(43, 160, 124, 0.14);
  background: rgba(77, 190, 151, 0.055);
  color: #548d7b;
}

.capability-table__head { color: #8294ae; }

.capability-row {
  border-top-color: rgba(62, 100, 159, 0.08);
}

.capability-row:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--work-focus) 6%, #fff), rgba(255, 255, 255, 0.5));
}

.capability-row > strong { color: #263f6f; }
.capability-row > p { color: #7185a4; }

.capability-rating > span::before { color: rgba(91, 119, 162, 0.19); }
.capability-rating > b { color: #425a80; }

.capability-rating > small {
  background: color-mix(in srgb, var(--work-focus) 5%, #fff);
  color: color-mix(in srgb, var(--work-focus) 48%, #667a99);
}

/* Capability screenshot timeline */
.capability-showcase-host {
  margin-top: 0;
}

.capability-showcase {
  position: relative;
  display: block;
}

.capability-showcase__timeline {
  --timeline-scale: 0;
  position: absolute;
  z-index: 4;
  right: 14px;
  top: 58px;
  display: grid;
  width: 166px;
  align-content: start;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(67, 103, 161, 0.13);
  border-radius: 16px;
  background: rgba(249, 252, 255, 0.84);
  box-shadow: 0 14px 38px rgba(22, 48, 91, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(116%);
  backdrop-filter: blur(18px) saturate(116%);
}

.capability-showcase__timeline::before,
.capability-showcase__timeline::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 51px;
  bottom: 51px;
  width: 1px;
  pointer-events: none;
}

.capability-showcase__timeline::before {
  background: linear-gradient(180deg, rgba(74, 112, 172, 0.12), rgba(74, 112, 172, 0.27), rgba(74, 112, 172, 0.12));
}

.capability-showcase__timeline::after {
  background: linear-gradient(180deg, var(--work-focus), color-mix(in srgb, var(--work-focus) 48%, #90a9cd));
  box-shadow: 0 0 12px color-mix(in srgb, var(--work-focus) 26%, transparent);
  transform: scaleY(var(--timeline-scale));
  transform-origin: top;
  transition: transform 520ms var(--ease);
}

.capability-showcase__step {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  min-height: 72px;
  align-items: center;
  padding: 10px 5px 10px 0;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #7a8da9;
  text-align: left;
  cursor: pointer;
  transition: color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease);
}

.capability-showcase__step:hover,
.capability-showcase__step:focus-visible {
  background: color-mix(in srgb, var(--work-focus) 5%, rgba(255, 255, 255, 0.72));
}

.capability-showcase__step:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--work-focus) 44%, #fff);
  outline-offset: 3px;
}

.capability-showcase__step > span:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 38px;
  place-items: center;
}

.capability-showcase__step > span:first-child i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #b5c2d5;
  box-shadow: 0 0 0 1px rgba(67, 103, 161, 0.18), 0 3px 9px rgba(60, 91, 143, 0.12);
  transition: background 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}

.capability-showcase__step > span:first-child b {
  position: absolute;
  top: 30px;
  color: #a3b0c3;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.capability-showcase__step.is-active {
  color: #17366e;
  transform: translateX(3px);
}

.capability-showcase__step.is-active > span:first-child i {
  background: var(--work-focus);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--work-focus) 13%, #fff), 0 0 17px color-mix(in srgb, var(--work-focus) 42%, transparent);
  transform: scale(1.08);
}

.capability-showcase__step.is-active > span:first-child b {
  color: color-mix(in srgb, var(--work-focus) 60%, #587097);
}

.capability-showcase__step-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.capability-showcase__step-copy strong {
  color: #536b90;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.25;
  transition: color 360ms var(--ease);
}

.capability-showcase__step.is-active .capability-showcase__step-copy strong {
  color: #17366e;
}

.capability-showcase__step-copy small {
  overflow: hidden;
  color: #9aa9bd;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capability-showcase__deck {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 95, 155, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(43, 75, 127, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.capability-showcase__bar {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(61, 99, 158, 0.09);
  background: linear-gradient(90deg, rgba(246, 250, 255, 0.92), rgba(255, 255, 255, 0.76));
  color: #7890b2;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.capability-showcase__bar b {
  color: color-mix(in srgb, var(--work-focus) 58%, #5f7597);
  font: inherit;
  white-space: nowrap;
}

.capability-showcase__slides {
  display: grid;
  overflow: hidden;
  touch-action: pan-y;
}

.capability-showcase__slide {
  grid-area: 1 / 1;
  min-width: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px) scale(0.994);
  pointer-events: none;
  transition: opacity 520ms var(--ease), transform 620ms var(--ease), visibility 0s linear 620ms;
}

.capability-showcase__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 55ms, 55ms, 0s;
}

.capability-showcase__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1118;
}

.capability-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 48px rgba(2, 8, 18, 0.12);
  pointer-events: none;
}

.capability-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capability-showcase__scan {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--work-focus) 72%, #fff), transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--work-focus) 35%, transparent);
  opacity: 0;
}

.capability-showcase__slide.is-active .capability-showcase__scan {
  animation: capability-scan 1.35s 320ms var(--ease) both;
}

.capability-showcase__slide figcaption {
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 15px;
  border-top: 1px solid rgba(61, 99, 158, 0.08);
}

.capability-showcase__slide figcaption > span {
  display: grid;
  gap: 4px;
}

.capability-showcase__slide figcaption small {
  color: #9aabc1;
  font-size: 7px;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.capability-showcase__slide figcaption strong {
  color: #2b4778;
  font-size: 12px;
  font-weight: 620;
}

.capability-showcase__slide figcaption a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--work-focus) 18%, rgba(66, 101, 157, 0.1));
  border-radius: 999px;
  background: color-mix(in srgb, var(--work-focus) 5%, #fff);
  color: color-mix(in srgb, var(--work-focus) 55%, #526b91);
  font-size: 9px;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 280ms var(--ease), background 280ms var(--ease), transform 280ms var(--ease);
}

.capability-showcase__slide figcaption a:hover,
.capability-showcase__slide figcaption a:focus-visible {
  border-color: color-mix(in srgb, var(--work-focus) 38%, rgba(66, 101, 157, 0.12));
  background: color-mix(in srgb, var(--work-focus) 9%, #fff);
  transform: translateY(-1px);
}

.capability-showcase__timeline--pending {
  min-height: 78px;
}

.capability-showcase__timeline--pending::after {
  display: none;
}

.capability-showcase__pending-node {
  display: grid;
  width: 32px;
  min-height: 60px;
  place-items: center;
}

.capability-showcase__pending-node i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #c6d0df;
  box-shadow: 0 0 0 1px rgba(67, 103, 161, 0.14);
}

.capability-showcase__pending-node b {
  margin-top: -25px;
  color: #a8b5c7;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.capability-showcase__empty {
  display: grid;
  min-height: clamp(330px, 36vw, 460px);
  place-content: center;
  justify-items: center;
  padding: 42px 24px;
  text-align: center;
}

.capability-showcase__empty-mark {
  position: relative;
  display: flex;
  width: 64px;
  height: 48px;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--work-focus) 18%, rgba(74, 108, 161, 0.1));
  border-radius: 13px;
  background: color-mix(in srgb, var(--work-focus) 4%, #fff);
}

.capability-showcase__empty-mark::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 11px;
  height: 1px;
  background: rgba(90, 122, 171, 0.13);
}

.capability-showcase__empty-mark i {
  width: 5px;
  border-radius: 4px 4px 0 0;
  background: color-mix(in srgb, var(--work-focus) 45%, #aec0d8);
}

.capability-showcase__empty-mark i:nth-child(1) { height: 11px; opacity: 0.42; }
.capability-showcase__empty-mark i:nth-child(2) { height: 18px; opacity: 0.68; }
.capability-showcase__empty-mark i:nth-child(3) { height: 27px; }

.capability-showcase__empty small {
  color: color-mix(in srgb, var(--work-focus) 45%, #8498b5);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.capability-showcase__empty strong {
  margin-top: 10px;
  color: #2a4677;
  font-size: 18px;
  font-weight: 580;
}

.capability-showcase__empty p {
  max-width: 360px;
  margin: 9px 0 0;
  color: #8295af;
  font-size: 11px;
  line-height: 1.7;
}

@keyframes capability-scan {
  0% { top: -2px; opacity: 0; }
  14%, 78% { opacity: 0.72; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 860px) {
  .capability-showcase__timeline {
    right: 10px;
    top: 52px;
    display: grid;
    width: 148px;
    padding: 6px;
  }

  .capability-showcase__step {
    grid-template-columns: 28px minmax(0, 1fr);
    min-width: 0;
    min-height: 64px;
    gap: 8px;
    padding: 7px 8px 7px 2px;
  }

  .capability-showcase__step.is-active {
    border-color: color-mix(in srgb, var(--work-focus) 26%, rgba(60, 98, 157, 0.1));
    background: color-mix(in srgb, var(--work-focus) 8%, #fff);
    box-shadow: inset 0 -2px 0 color-mix(in srgb, var(--work-focus) 56%, #fff);
    transform: none;
  }

  .capability-showcase__step > span:first-child {
    min-height: 30px;
  }

  .capability-showcase__step > span:first-child b {
    display: none;
  }

  .capability-showcase__timeline--pending {
    min-height: 68px;
  }

  .capability-showcase__pending-node {
    width: 32px;
    min-height: 54px;
    padding: 0;
  }

  .capability-showcase__pending-node b {
    display: none;
  }
}

@media (max-width: 560px) {
  .capability-showcase-host {
    margin-top: 0;
  }

  .capability-showcase__timeline {
    right: 6px;
    top: 46px;
    width: 48px;
    padding: 5px 4px;
    border-radius: 13px;
    background: rgba(249, 252, 255, 0.86);
  }

  .capability-showcase__step {
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: 48px;
    padding: 5px;
  }

  .capability-showcase__timeline::before,
  .capability-showcase__timeline::after,
  .capability-showcase__step-copy {
    display: none;
  }

  .capability-showcase__step > span:first-child {
    min-height: 30px;
  }

  .capability-showcase__deck {
    border-radius: 14px;
  }

  .capability-showcase__bar {
    min-height: 39px;
    padding: 0 12px;
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .capability-showcase__slide figcaption {
    min-height: 55px;
    gap: 10px;
    padding: 9px 11px;
  }

  .capability-showcase__slide figcaption a {
    min-height: 29px;
    padding: 0 9px;
    font-size: 8px;
  }

  .capability-showcase__empty {
    min-height: 270px;
    padding: 34px 18px;
  }

  .capability-showcase__timeline--pending {
    min-height: 48px;
  }

  .capability-showcase__pending-node {
    width: 38px;
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-showcase__timeline::after,
  .capability-showcase__step,
  .capability-showcase__step > span:first-child i,
  .capability-showcase__slide {
    transition-duration: 0.001ms !important;
  }

  .capability-showcase__scan {
    display: none;
  }
}

.real-work__future-bridge span { color: #6f85a6; }

@media (max-width: 1040px) {
  .real-work__rail {
    border-bottom-color: rgba(55, 93, 153, 0.09);
  }
}

@media (max-width: 760px) {
  .capability-row {
    border-color: rgba(62, 100, 159, 0.1);
    background: rgba(255, 255, 255, 0.62);
  }
}

@media (max-width: 1180px) {
  .real-work__catalog-status {
    justify-self: start;
  }
}

/* Future horizon / final-screen observatory */
.future-horizon {
  --horizon-focus: #8c78e8;
  position: relative;
  min-height: max(1320px, 118vh);
  min-height: max(1320px, 118svh);
  overflow: hidden;
  padding: clamp(124px, 12vh, 168px) 32px clamp(118px, 11vh, 154px);
  isolation: isolate;
  color: #11285d;
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 96px, rgba(255, 255, 255, 0) 176px),
    radial-gradient(circle at 15% 18%, rgba(142, 216, 255, 0.16), transparent 25%),
    radial-gradient(circle at 82% 12%, rgba(140, 120, 232, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 28%, #fbfcff 72%, #f7faff 100%);
}

.future-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(20, 62, 128, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 62, 128, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, transparent 72%);
  opacity: 0.52;
}

.future-horizon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34vw;
  z-index: -3;
  width: min(1120px, 86vw);
  height: min(1120px, 86vw);
  border: 1px solid rgba(46, 89, 158, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(67, 125, 218, 0.018),
    0 0 0 16vw rgba(140, 120, 232, 0.012);
  transform: translateX(-50%);
  pointer-events: none;
}

.future-horizon__field {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle, rgba(55, 101, 178, 0.14) 0 0.7px, transparent 0.9px) 18px 28px / 137px 119px,
    radial-gradient(circle, rgba(140, 120, 232, 0.11) 0 0.6px, transparent 0.85px) 64px 18px / 181px 163px;
  -webkit-mask-image: linear-gradient(180deg, transparent 4%, #000 22%, #000 78%, transparent 98%);
  mask-image: linear-gradient(180deg, transparent 4%, #000 22%, #000 78%, transparent 98%);
  opacity: 0.55;
  pointer-events: none;
}

.future-horizon__aurora {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  will-change: transform, opacity;
}

.future-horizon__aurora--blue {
  left: -12vw;
  top: 29%;
  width: 38vw;
  height: 38vw;
  background: rgba(142, 216, 255, 0.22);
  animation: horizon-aurora-blue 22s ease-in-out infinite alternate;
}

.future-horizon__aurora--violet {
  right: -10vw;
  top: 20%;
  width: 34vw;
  height: 34vw;
  background: rgba(140, 120, 232, 0.16);
  animation: horizon-aurora-violet 26s ease-in-out infinite alternate;
}

.future-horizon__aurora--gold {
  right: 15%;
  bottom: 4%;
  width: 28vw;
  height: 28vw;
  background: rgba(215, 173, 103, 0.12);
  animation: horizon-aurora-gold 24s ease-in-out infinite alternate;
}

.real-work__future-bridge {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1400px, calc(100vw - 64px));
  justify-content: center;
  margin: 82px auto -62px;
}

.real-work__future-bridge span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #7895bc;
}

.real-work__future-bridge b {
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.2em;
}

.real-work__future-bridge i {
  color: #d7ad67;
  font-size: 15px;
  font-style: normal;
  animation: future-bridge-float 3.6s ease-in-out infinite;
}

.future-horizon__intro {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1400px, calc(100vw - 64px));
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto 72px;
}

.future-horizon__intro > div {
  max-width: 940px;
}

.future-horizon__eyebrow {
  margin: 0 0 24px;
  color: #6686bd;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 680;
  letter-spacing: 0.24em;
  line-height: 1.5;
}

.future-horizon__intro h2 {
  max-width: 980px;
  margin: 0;
  color: #102a63;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.12;
  text-wrap: balance;
}

.future-horizon__intro h2 span {
  display: block;
}

.future-horizon__lead {
  margin: 28px 0 0;
  color: #6b7e9d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.8;
}

.future-horizon__status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(40, 83, 155, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 36px rgba(48, 89, 154, 0.07);
  color: #7890b5;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.14em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.future-horizon__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7ad67;
  box-shadow: 0 0 12px rgba(215, 173, 103, 0.58);
  animation: horizon-status-pulse 4s ease-in-out infinite;
}

.horizon-observatory {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1400px, calc(100vw - 64px));
  min-height: 700px;
  grid-template-columns: 292px minmax(0, 1fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(38, 79, 147, 0.11);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 48px 130px rgba(41, 76, 137, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(28px) saturate(112%);
  backdrop-filter: blur(28px) saturate(112%);
}

.horizon-observatory::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 90px color-mix(in srgb, var(--horizon-focus) 5%, transparent);
  pointer-events: none;
  transition: box-shadow 900ms var(--ease);
}

.horizon-nav {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 42px 24px 30px;
  border-right: 1px solid rgba(76, 112, 173, 0.09);
  background:
    linear-gradient(180deg, rgba(249, 252, 255, 0.86), rgba(238, 245, 255, 0.66));
}

.horizon-nav__label {
  margin: 0 18px 34px;
  color: #9aaac2;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.22em;
}

.horizon-tab {
  --horizon-accent: #8c78e8;
  position: relative;
  display: grid;
  min-height: 118px;
  grid-template-columns: 34px 1fr 10px;
  gap: 13px;
  align-items: center;
  overflow: hidden;
  padding: 22px 17px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  color: #8799b5;
  cursor: pointer;
  text-align: left;
  transition:
    color 560ms var(--ease),
    border-color 560ms var(--ease),
    background 560ms var(--ease),
    box-shadow 560ms var(--ease),
    transform 560ms var(--ease);
}

.horizon-tab + .horizon-tab {
  margin-top: 8px;
}

.horizon-tab__index {
  align-self: start;
  padding-top: 3px;
  color: color-mix(in srgb, var(--horizon-accent) 64%, #8292ad);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.horizon-tab__copy {
  display: grid;
  gap: 9px;
}

.horizon-tab__copy strong {
  color: #4c6388;
  font-size: 19px;
  font-weight: 570;
  letter-spacing: 0.015em;
  line-height: 1.25;
  transition: color 560ms var(--ease);
}

.horizon-tab__copy small {
  color: #9aa9bf;
  font-size: 11px;
  line-height: 1.5;
  transition: color 560ms var(--ease);
}

.horizon-tab__signal {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(74, 105, 154, 0.28);
  border-radius: 50%;
  transition: background 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease), transform 560ms var(--ease);
}

.horizon-tab__progress {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 64px;
  height: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(90, 117, 162, 0.1);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}

.horizon-tab__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--horizon-accent), #fff);
  box-shadow: 0 0 10px color-mix(in srgb, var(--horizon-accent) 46%, transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.horizon-tab:hover,
.horizon-tab:focus-visible,
.horizon-tab.is-active {
  border-color: color-mix(in srgb, var(--horizon-accent) 20%, transparent);
  background: linear-gradient(110deg, color-mix(in srgb, var(--horizon-accent) 9%, #fff), rgba(255, 255, 255, 0.46));
  outline: none;
  transform: translateX(3px);
}

.horizon-tab.is-active {
  box-shadow: inset 3px 0 0 color-mix(in srgb, var(--horizon-accent) 76%, #fff), 0 18px 42px rgba(48, 80, 137, 0.08);
}

.horizon-tab:hover .horizon-tab__copy strong,
.horizon-tab:focus-visible .horizon-tab__copy strong,
.horizon-tab.is-active .horizon-tab__copy strong {
  color: #17366e;
}

.horizon-tab.is-active .horizon-tab__copy small {
  color: color-mix(in srgb, var(--horizon-accent) 55%, #7285a4);
}

.horizon-tab.is-active .horizon-tab__signal {
  border-color: var(--horizon-accent);
  background: var(--horizon-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--horizon-accent) 62%, transparent);
  transform: scale(1.18);
}

.future-horizon.is-story-running .horizon-tab.is-active .horizon-tab__progress {
  opacity: 1;
}

.future-horizon.is-story-running .horizon-tab.is-active .horizon-tab__progress i {
  animation: horizon-progress 6.2s linear forwards;
}

.horizon-nav__coordinates {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: auto 18px 0;
  color: #a0afc5;
}

.horizon-nav__coordinates span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--horizon-focus), transparent);
  transition: background 700ms var(--ease);
}

.horizon-nav__coordinates b {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.horizon-chamber {
  --horizon-x: 0px;
  --horizon-y: 0px;
  position: relative;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  color: #eef5ff;
  background:
    radial-gradient(circle at 67% 44%, color-mix(in srgb, var(--horizon-focus) 14%, transparent), transparent 27%),
    radial-gradient(circle at 50% 115%, rgba(42, 104, 194, 0.3), transparent 45%),
    linear-gradient(145deg, #0c2851 0%, #071d42 42%, #051633 100%);
  transition: background 900ms var(--ease);
}

.horizon-chamber__glass {
  position: absolute;
  inset: 0;
  z-index: 8;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 14%, transparent 78%, rgba(142, 216, 255, 0.025)),
    radial-gradient(circle at 48% 35%, transparent 0%, rgba(2, 10, 29, 0.03) 48%, rgba(1, 8, 24, 0.24) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065);
  pointer-events: none;
}

.horizon-chamber__grid {
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -27%;
  z-index: -1;
  height: 73%;
  background:
    linear-gradient(rgba(103, 160, 235, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 160, 235, 0.11) 1px, transparent 1px);
  background-size: 62px 42px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, transparent 96%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 42%, transparent 96%);
  opacity: 0.6;
  transform: perspective(500px) rotateX(62deg) translate3d(var(--horizon-x), calc(var(--horizon-y) * -0.5), 0);
  transform-origin: center top;
  transition: transform 900ms var(--ease);
  animation: horizon-grid-travel 24s linear infinite;
}

.horizon-chamber__stars {
  position: absolute;
  inset: -8%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(224, 239, 255, 0.62) 0 0.7px, transparent 1px) 18px 28px / 127px 113px,
    radial-gradient(circle, rgba(141, 199, 255, 0.46) 0 0.6px, transparent 0.9px) 62px 8px / 173px 151px,
    radial-gradient(circle, rgba(196, 174, 255, 0.34) 0 0.5px, transparent 0.8px) 12px 48px / 211px 187px;
  opacity: 0.56;
  transform: translate3d(calc(var(--horizon-x) * -0.32), calc(var(--horizon-y) * -0.32), 0);
  transition: transform 1100ms var(--ease);
  animation: horizon-stars-breathe 9s ease-in-out infinite alternate;
}

.horizon-chamber__distance {
  position: absolute;
  left: 42%;
  top: 18%;
  z-index: -1;
  width: 54%;
  height: 58%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 68%, color-mix(in srgb, var(--horizon-focus) 20%, transparent), transparent 57%);
  filter: blur(26px);
  opacity: 0.66;
  transform: translate3d(calc(var(--horizon-x) * 0.42), calc(var(--horizon-y) * 0.42), 0);
  transition: background 900ms var(--ease), transform 1000ms var(--ease);
  animation: horizon-distance-breathe 8.5s ease-in-out infinite alternate;
}

.horizon-chamber__horizon {
  position: absolute;
  right: -5%;
  bottom: 18%;
  z-index: 0;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 103, 0.12), rgba(239, 204, 139, 0.72), transparent);
  box-shadow: 0 0 28px rgba(215, 173, 103, 0.36);
  opacity: 0.7;
  transform: translate3d(calc(var(--horizon-x) * 0.24), calc(var(--horizon-y) * 0.24), 0);
  transition: transform 1000ms var(--ease);
  animation: horizon-line-breathe 10s ease-in-out infinite;
}

.horizon-chamber__corner {
  position: absolute;
  z-index: 9;
  color: rgba(150, 177, 215, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  pointer-events: none;
}

.horizon-chamber__corner--top {
  right: 28px;
  top: 24px;
}

.horizon-chamber__corner--bottom {
  right: 28px;
  bottom: 23px;
}

.horizon-panel {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(340px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(16px, 2vw, 38px);
  padding: 74px clamp(42px, 5vw, 74px) 66px;
  animation: horizon-panel-enter 950ms var(--ease) both;
}

.horizon-panel[hidden] {
  display: none;
}

.horizon-panel__copy {
  position: relative;
  z-index: 5;
  max-width: 500px;
}

.horizon-panel__copy > span {
  display: block;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--horizon-focus) 65%, #a7c4ec);
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.22em;
  line-height: 1.6;
}

.horizon-panel__copy h3 {
  margin: 0;
  color: #f5f8ff;
  font-size: clamp(34px, 3.25vw, 50px);
  font-weight: 470;
  letter-spacing: -0.052em;
  line-height: 1.2;
  text-wrap: balance;
}

.horizon-panel__copy > p {
  margin: 28px 0 0;
  color: #9eb1cd;
  font-size: 15px;
  line-height: 1.86;
}

.horizon-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.horizon-panel__tags b {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 20%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--horizon-focus) 7%, transparent);
  color: color-mix(in srgb, var(--horizon-focus) 45%, #dce9fa);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.horizon-panel__copy blockquote {
  position: relative;
  margin: 37px 0 0;
  padding: 0 0 0 20px;
  border-left: 1px solid color-mix(in srgb, var(--horizon-focus) 68%, transparent);
  color: #d5e2f4;
  font-size: 16px;
  font-weight: 470;
  line-height: 1.72;
}

.horizon-panel__copy blockquote::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: var(--horizon-focus);
  box-shadow: 0 0 16px color-mix(in srgb, var(--horizon-focus) 60%, transparent);
}

.horizon-vision {
  position: relative;
  z-index: 3;
  min-height: 500px;
  transform: translate3d(calc(var(--horizon-x) * 0.55), calc(var(--horizon-y) * 0.55), 0);
  transition: transform 850ms var(--ease);
}

.horizon-vision::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(470px, 90%);
  height: min(470px, 90%);
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 12%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px color-mix(in srgb, var(--horizon-focus) 2.5%, transparent),
    0 0 90px color-mix(in srgb, var(--horizon-focus) 10%, transparent);
  transform: translate(-50%, -50%);
  opacity: 0.66;
}

.horizon-core {
  position: absolute;
  left: 52%;
  top: 50%;
  display: grid;
  width: 142px;
  height: 142px;
  place-content: center;
  justify-items: center;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 43%, rgba(255, 255, 255, 0.12));
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle, color-mix(in srgb, var(--horizon-focus) 26%, rgba(4, 21, 49, 0.82)), rgba(5, 22, 48, 0.74) 67%);
  box-shadow:
    0 0 52px color-mix(in srgb, var(--horizon-focus) 25%, transparent),
    inset 0 0 38px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
  animation: horizon-core-breathe 7.8s ease-in-out infinite;
}

.horizon-core::before,
.horizon-core::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 26%, transparent);
  border-radius: 50%;
}

.horizon-core::before {
  inset: -22px;
  animation: horizon-core-orbit 16s linear infinite;
}

.horizon-core::after {
  inset: -49px;
  border-style: dashed;
  opacity: 0.44;
  animation: horizon-core-orbit 27s linear infinite reverse;
}

.horizon-core > i {
  width: 9px;
  height: 9px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--horizon-focus);
  box-shadow: 0 0 18px var(--horizon-focus);
}

.horizon-core > b {
  color: #f4f7ff;
  font-size: 19px;
  font-weight: 520;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.horizon-core > small {
  margin-top: 6px;
  color: #839abd;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Continuous self visual */
.memory-axis {
  position: absolute;
  left: 52%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--horizon-focus) 60%, transparent), rgba(142, 216, 255, 0.4), transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--horizon-focus) 28%, transparent);
  opacity: 0.68;
}

.memory-ring {
  position: absolute;
  left: 52%;
  top: 50%;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 25%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(67deg);
  animation: memory-ring-pulse 8s ease-in-out infinite;
}

.memory-ring--one { width: 230px; height: 230px; }
.memory-ring--two { width: 360px; height: 360px; animation-delay: -2.6s; }
.memory-ring--three { width: 490px; height: 490px; animation-delay: -5.2s; }

.memory-fragment {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 17%, transparent);
  border-radius: 8px;
  background: rgba(8, 29, 62, 0.58);
  box-shadow: 0 13px 36px rgba(0, 9, 27, 0.18);
  color: #8399bb;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: memory-fragment-drift 9s ease-in-out infinite alternate;
}

.memory-fragment::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--horizon-focus) 32%, transparent), transparent);
}

.memory-fragment--one { left: 3%; top: 18%; animation-delay: -2s; }
.memory-fragment--two { right: 1%; top: 25%; animation-delay: -5s; }
.memory-fragment--three { left: 0; bottom: 28%; animation-delay: -7s; }
.memory-fragment--four { right: 3%; bottom: 18%; animation-delay: -3.5s; }
.memory-fragment--five { left: 14%; top: 48%; animation-delay: -8s; }
.memory-fragment--one::after,
.memory-fragment--three::after,
.memory-fragment--five::after { left: 100%; }
.memory-fragment--two::after,
.memory-fragment--four::after { right: 100%; transform: rotate(180deg); }

/* Ambient presence visual */
.presence-link {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 1px;
  height: 180px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--horizon-focus) 70%, #fff), transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--horizon-focus) 32%, transparent);
  transform-origin: top;
  opacity: 0.65;
}

.presence-link::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px var(--horizon-focus);
  animation: presence-signal 3.8s ease-in-out infinite;
}

.presence-link--one { transform: rotate(-48deg); }
.presence-link--two { transform: rotate(43deg); }
.presence-link--three { transform: rotate(132deg); }
.presence-link--four { transform: rotate(222deg); }
.presence-link--two::after { animation-delay: -0.9s; }
.presence-link--three::after { animation-delay: -1.8s; }
.presence-link--four::after { animation-delay: -2.7s; }

.presence-node {
  position: absolute;
  display: grid;
  min-width: 116px;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 28%, transparent);
  border-radius: 13px;
  background: rgba(7, 29, 62, 0.66);
  box-shadow: 0 18px 42px rgba(0, 8, 25, 0.22), 0 0 28px color-mix(in srgb, var(--horizon-focus) 7%, transparent);
  font-style: normal;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: presence-node-float 7s ease-in-out infinite alternate;
}

.presence-node::before {
  content: "";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--horizon-focus);
  box-shadow: 0 0 12px var(--horizon-focus);
}

.presence-node b {
  color: #dcecff;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.presence-node small {
  color: #6e89ad;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.presence-node--desktop { left: 1%; top: 12%; }
.presence-node--mobile { right: 0; top: 17%; animation-delay: -2s; }
.presence-node--cloud { right: 5%; bottom: 13%; animation-delay: -4s; }
.presence-node--world { left: 0; bottom: 15%; animation-delay: -6s; }

/* Responsible intelligence visual */
.choice-origin {
  position: absolute;
  left: 8%;
  top: 50%;
  display: grid;
  gap: 8px;
  justify-items: center;
  transform: translateY(-50%);
}

.choice-origin i {
  width: 18px;
  height: 18px;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 68%, #fff);
  border-radius: 50%;
  background: color-mix(in srgb, var(--horizon-focus) 30%, #0a244d);
  box-shadow: 0 0 24px color-mix(in srgb, var(--horizon-focus) 50%, transparent);
  animation: choice-origin-pulse 4.4s ease-in-out infinite;
}

.choice-origin b {
  color: #9fb2cd;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.choice-path {
  position: absolute;
  left: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--horizon-focus) 76%, #fff), color-mix(in srgb, var(--horizon-focus) 26%, transparent));
  box-shadow: 0 0 12px color-mix(in srgb, var(--horizon-focus) 26%, transparent);
  transform-origin: left;
}

.choice-path::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--horizon-focus);
  box-shadow: 0 0 14px var(--horizon-focus);
}

.choice-path--one { width: 27%; transform: rotate(-34deg); opacity: 0.35; }
.choice-path--two { width: 34%; transform: rotate(-10deg); opacity: 0.55; }
.choice-path--three { width: 46%; transform: rotate(14deg); opacity: 0.96; animation: choice-path-awaken 4.8s ease-in-out infinite; }
.choice-path--four { width: 29%; transform: rotate(38deg); opacity: 0.28; }

.choice-node {
  position: absolute;
  display: grid;
  width: 62px;
  height: 62px;
  place-content: center;
  justify-items: center;
  border: 1px solid color-mix(in srgb, var(--horizon-focus) 31%, transparent);
  border-radius: 50%;
  background: rgba(7, 28, 59, 0.78);
  box-shadow: 0 14px 36px rgba(0, 7, 23, 0.24);
  font-style: normal;
  animation: choice-node-breathe 6s ease-in-out infinite alternate;
}

.choice-node b {
  color: color-mix(in srgb, var(--horizon-focus) 63%, #fff);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.choice-node small {
  margin-top: 4px;
  color: #8298b8;
  font-size: 9px;
}

.choice-node--intent { left: 31%; top: 18%; }
.choice-node--boundary { left: 44%; top: 35%; animation-delay: -1.5s; }
.choice-node--action { left: 55%; top: 58%; animation-delay: -3s; }
.choice-node--verify { right: 15%; bottom: 17%; animation-delay: -4.5s; }

.causal-loop {
  position: absolute;
  right: 1%;
  top: 14%;
  display: grid;
  width: 174px;
  height: 174px;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(215, 173, 103, 0.46);
  border-radius: 50%;
  box-shadow:
    0 0 42px rgba(215, 173, 103, 0.13),
    inset 0 0 32px rgba(215, 173, 103, 0.045);
  animation: causal-loop-breathe 8s ease-in-out infinite;
}

.causal-loop::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(231, 198, 137, 0.38);
  border-radius: 50%;
  animation: horizon-core-orbit 22s linear infinite;
}

.causal-loop i {
  width: 8px;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #d7ad67;
  box-shadow: 0 0 18px rgba(215, 173, 103, 0.78);
}

.causal-loop b {
  color: #e8d4af;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.causal-loop small {
  margin-top: 7px;
  color: #9b8c75;
  font-size: 9px;
}

.future-horizon__epilogue {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1240px, calc(100vw - 64px));
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin: 156px auto 0;
}

.future-horizon__statement {
  position: relative;
  max-width: 920px;
  padding-top: 34px;
}

.future-horizon__statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 116px;
  height: 1px;
  background: linear-gradient(90deg, #6aaeea 0%, #8c78e8 58%, #d7ad67 100%);
  box-shadow:
    0 0 12px rgba(140, 120, 232, 0.22),
    58px 0 18px rgba(215, 173, 103, 0.13);
  transform-origin: left center;
}

.future-horizon__statement::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8c78e8;
  box-shadow: 116px 0 0 #d7ad67, 0 0 10px rgba(140, 120, 232, 0.5);
}

.future-horizon__statement p {
  margin: 0;
  color: #18366e;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 1.52;
  text-wrap: balance;
}

.future-horizon__statement p + p {
  color: #4c6388;
}

.future-horizon__statement span {
  display: block;
  margin-top: 31px;
  color: #a0aec2;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.22em;
}

.future-horizon__return {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 4px 0 0;
  border-bottom: 1px solid rgba(39, 79, 146, 0.18);
  background: transparent;
  color: #637a9d;
  cursor: pointer;
  font-size: 14px;
  transition: color 480ms var(--ease), border-color 480ms var(--ease), transform 480ms var(--ease);
}

.future-horizon__return i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(43, 83, 149, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-style: normal;
  box-shadow: 0 10px 28px rgba(40, 76, 137, 0.08);
  transition: border-color 480ms var(--ease), background 480ms var(--ease), box-shadow 480ms var(--ease), transform 480ms var(--ease);
}

.future-horizon__return:hover,
.future-horizon__return:focus-visible {
  border-color: rgba(140, 120, 232, 0.42);
  color: #17366e;
  outline: none;
  transform: translateY(-2px);
}

.future-horizon__return:hover i,
.future-horizon__return:focus-visible i {
  border-color: rgba(140, 120, 232, 0.28);
  background: rgba(140, 120, 232, 0.09);
  box-shadow: 0 12px 32px rgba(93, 78, 171, 0.16);
  transform: translateY(-3px);
}

.future-horizon.is-motion-ready .future-horizon__intro,
.future-horizon.is-motion-ready .horizon-observatory {
  opacity: 0;
  transition: opacity 920ms var(--reveal-ease), transform 920ms var(--reveal-ease);
}

.future-horizon.is-motion-ready .future-horizon__intro {
  transform: translateY(20px);
}

.future-horizon.is-motion-ready .horizon-observatory {
  transform: translateY(30px) scale(0.99);
  transition-duration: 1060ms;
}

.future-horizon.is-motion-ready .future-horizon__epilogue {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 940ms var(--reveal-ease), transform 940ms var(--reveal-ease);
}

.future-horizon.is-motion-ready .future-horizon__statement p,
.future-horizon.is-motion-ready .future-horizon__statement span {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 760ms var(--reveal-ease), transform 760ms var(--reveal-ease);
}

.future-horizon.is-motion-ready .future-horizon__statement::before {
  opacity: 0;
  transform: scaleX(0.18);
  transition: opacity 720ms var(--reveal-ease), transform 820ms var(--reveal-ease);
}

.future-horizon.is-motion-ready .future-horizon__statement::after {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 620ms var(--reveal-ease), transform 720ms var(--reveal-ease);
}

.future-horizon.is-motion-ready.is-visible .future-horizon__intro,
.future-horizon.is-motion-ready.is-visible .horizon-observatory {
  opacity: 1;
  transform: translateY(0);
}

.future-horizon.is-motion-ready.is-visible .horizon-observatory {
  transition-delay: 160ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__epilogue {
  opacity: 1;
  transform: translateY(0);
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement p,
.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement span,
.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement::before,
.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement::after {
  opacity: 1;
  transform: none;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement::before {
  transition-delay: 80ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement::after {
  transition-delay: 150ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement p:nth-of-type(1) {
  transition-delay: 130ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement p:nth-of-type(2) {
  transition-delay: 220ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement p:nth-of-type(3) {
  transition-delay: 310ms;
}

.future-horizon.is-motion-ready.is-epilogue-visible .future-horizon__statement span {
  transition-delay: 410ms;
}

@keyframes horizon-panel-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes future-bridge-float {
  0%, 100% { opacity: 0.5; transform: translateY(-2px); }
  50% { opacity: 1; transform: translateY(4px); }
}

@keyframes horizon-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes horizon-status-pulse {
  0%, 100% { opacity: 0.56; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes horizon-grid-travel {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 84px, 62px 0; }
}

@keyframes horizon-stars-breathe {
  from { opacity: 0.42; }
  to { opacity: 0.68; }
}

@keyframes horizon-distance-breathe {
  from { opacity: 0.46; transform: translate3d(calc(var(--horizon-x) * 0.42), calc(var(--horizon-y) * 0.42), 0) scale(0.96); }
  to { opacity: 0.72; transform: translate3d(calc(var(--horizon-x) * 0.42), calc(var(--horizon-y) * 0.42), 0) scale(1.07); }
}

@keyframes horizon-line-breathe {
  0%, 100% { opacity: 0.44; filter: blur(0); }
  50% { opacity: 0.82; filter: blur(0.35px); }
}

@keyframes horizon-core-breathe {
  0%, 100% { box-shadow: 0 0 42px color-mix(in srgb, var(--horizon-focus) 20%, transparent), inset 0 0 34px rgba(255, 255, 255, 0.035); transform: translate(-50%, -50%) scale(0.98); }
  50% { box-shadow: 0 0 66px color-mix(in srgb, var(--horizon-focus) 31%, transparent), inset 0 0 42px rgba(255, 255, 255, 0.055); transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes horizon-core-orbit {
  to { transform: rotate(360deg); }
}

@keyframes memory-ring-pulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) rotateX(67deg) scale(0.94); }
  50% { opacity: 0.62; transform: translate(-50%, -50%) rotateX(67deg) scale(1.06); }
}

@keyframes memory-fragment-drift {
  from { opacity: 0.46; transform: translate3d(-4px, 7px, 0); }
  to { opacity: 0.88; transform: translate3d(6px, -8px, 0); }
}

@keyframes presence-signal {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  22% { opacity: 1; }
  78% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(178px) scale(1.2); }
}

@keyframes presence-node-float {
  from { transform: translateY(6px); }
  to { transform: translateY(-7px); }
}

@keyframes choice-origin-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes choice-path-awaken {
  0%, 100% { filter: brightness(0.86); }
  50% { filter: brightness(1.35); }
}

@keyframes choice-node-breathe {
  from { border-color: color-mix(in srgb, var(--horizon-focus) 21%, transparent); transform: translateY(5px); }
  to { border-color: color-mix(in srgb, var(--horizon-focus) 48%, transparent); transform: translateY(-5px); }
}

@keyframes causal-loop-breathe {
  0%, 100% { opacity: 0.68; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1.025); }
}

@keyframes horizon-aurora-blue {
  from { opacity: 0.42; transform: translate3d(-7%, 8%, 0) scale(0.94); }
  to { opacity: 0.75; transform: translate3d(13%, -7%, 0) scale(1.1); }
}

@keyframes horizon-aurora-violet {
  from { opacity: 0.36; transform: translate3d(8%, -7%, 0) scale(0.96); }
  to { opacity: 0.66; transform: translate3d(-12%, 10%, 0) scale(1.12); }
}

@keyframes horizon-aurora-gold {
  from { opacity: 0.32; transform: translate3d(8%, 7%, 0) scale(0.94); }
  to { opacity: 0.62; transform: translate3d(-10%, -8%, 0) scale(1.09); }
}

@media (max-width: 1180px) {
  .future-horizon {
    min-height: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .future-horizon__intro,
  .horizon-observatory,
  .future-horizon__epilogue,
  .real-work__future-bridge {
    width: min(980px, 100%);
  }

  .horizon-observatory {
    grid-template-columns: 1fr;
  }

  .horizon-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 9px;
    overflow-x: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(76, 112, 173, 0.09);
    scrollbar-width: none;
  }

  .horizon-nav::-webkit-scrollbar {
    display: none;
  }

  .horizon-nav__label,
  .horizon-nav__coordinates {
    display: none;
  }

  .horizon-tab {
    min-width: 230px;
    min-height: 98px;
  }

  .horizon-tab + .horizon-tab {
    margin-top: 0;
  }

  .horizon-panel {
    grid-template-columns: minmax(300px, 0.88fr) minmax(380px, 1.12fr);
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media (max-width: 820px) {
  .future-horizon {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .future-horizon__intro {
    display: block;
    margin-bottom: 52px;
  }

  .future-horizon__status {
    margin-top: 30px;
  }

  .horizon-observatory {
    border-radius: 28px;
  }

  .horizon-nav {
    grid-template-columns: repeat(3, minmax(205px, 1fr));
  }

  .horizon-chamber,
  .horizon-panel {
    min-height: 900px;
  }

  .horizon-panel {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 26px;
    padding: 68px 34px 44px;
  }

  .horizon-panel__copy {
    max-width: 650px;
  }

  .horizon-panel__copy h3 {
    max-width: 620px;
  }

  .horizon-vision {
    min-height: 440px;
  }

  .horizon-chamber__corner--bottom {
    display: none;
  }

  .future-horizon__epilogue {
    display: block;
    margin-top: 126px;
  }

  .future-horizon__return {
    margin-top: 48px;
  }
}

@media (max-width: 560px) {
  .future-horizon {
    padding-right: 18px;
    padding-left: 18px;
  }

  .future-horizon__intro,
  .horizon-observatory,
  .future-horizon__epilogue {
    width: 100%;
  }

  .future-horizon__intro h2 {
    font-size: 41px;
  }

  .future-horizon__lead {
    font-size: 16px;
  }

  .future-horizon__status {
    white-space: normal;
  }

  .horizon-nav {
    grid-template-columns: repeat(3, minmax(184px, 1fr));
    padding: 13px;
  }

  .horizon-tab {
    min-width: 184px;
    min-height: 92px;
    grid-template-columns: 28px 1fr 7px;
    gap: 9px;
    padding: 16px 13px;
  }

  .horizon-tab__copy strong {
    font-size: 16px;
  }

  .horizon-tab__copy small {
    font-size: 9px;
  }

  .horizon-chamber,
  .horizon-panel {
    min-height: 930px;
  }

  .horizon-panel {
    padding: 64px 22px 38px;
  }

  .horizon-panel__copy h3 {
    font-size: 35px;
  }

  .horizon-panel__copy > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .horizon-vision {
    min-height: 420px;
    transform: scale(0.88) translate3d(calc(var(--horizon-x) * 0.55), calc(var(--horizon-y) * 0.55), 0);
    transform-origin: center;
  }

  .memory-fragment--two,
  .memory-fragment--four {
    right: -7%;
  }

  .memory-fragment--one,
  .memory-fragment--three {
    left: -8%;
  }

  .presence-node {
    min-width: 102px;
    padding: 11px 12px;
  }

  .causal-loop {
    right: -6%;
    width: 150px;
    height: 150px;
  }

  .choice-node {
    width: 54px;
    height: 54px;
  }

  .future-horizon__statement p {
    font-size: 25px;
    line-height: 1.58;
  }
}

/* H5 experience: touch-first navigation, calmer motion and denser storytelling */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 22px;
  }

  body {
    min-width: 320px;
    overscroll-behavior-y: none;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(22, 46, 88, 0.08), rgba(13, 35, 76, 0.16));
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms var(--ease);
  }

  body.has-mobile-menu::before {
    opacity: 1;
    pointer-events: none;
  }

  .site-header {
    position: relative;
    z-index: 50;
    width: calc(100% - 24px);
    height: 62px;
    flex-wrap: nowrap;
    gap: 12px;
    margin: max(10px, env(safe-area-inset-top)) auto 0;
    padding: 10px 11px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
      0 16px 44px rgba(38, 77, 145, 0.11),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
    backdrop-filter: blur(24px) saturate(125%);
  }

  .site-header--shared {
    align-items: center;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .brand {
    min-height: 40px;
  }

  .mobile-menu-toggle {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(44, 84, 151, 0.1);
    border-radius: 13px;
    background: rgba(246, 250, 255, 0.86);
    box-shadow: 0 8px 22px rgba(41, 78, 139, 0.07);
    color: #315485;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: opacity 320ms var(--reveal-ease), transform 420ms var(--reveal-ease);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(6.5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.35);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .header-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 21px;
    background: rgba(250, 252, 255, 0.985);
    box-shadow:
      0 26px 70px rgba(30, 66, 127, 0.2),
      inset 0 1px 0 #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 300ms var(--reveal-ease),
      visibility 300ms,
      transform 420ms var(--reveal-ease);
  }

  .site-header.is-menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav {
    order: initial;
    display: grid;
    width: 100%;
    gap: 4px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .primary-nav__item {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 13px;
    color: #405b82;
    font-size: 15px;
    font-weight: 590;
    letter-spacing: 0.035em;
    transition: color 240ms var(--ease), background 240ms var(--ease), transform 240ms var(--ease);
  }

  .primary-nav__item::after {
    right: 14px;
    bottom: 50%;
    left: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(50%) scale(0.5);
  }

  .primary-nav__item.is-active {
    background: linear-gradient(90deg, rgba(47, 124, 255, 0.1), rgba(127, 111, 232, 0.035));
    color: #184eac;
  }

  .primary-nav__item.is-active::after {
    transform: translateY(50%) scale(1);
  }

  .top-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(49, 87, 148, 0.08);
    font-size: 13px;
  }

  .top-actions .text-link,
  .language-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(46, 84, 145, 0.08);
    border-radius: 12px;
    background: rgba(243, 248, 255, 0.78);
  }

  .hero {
    min-height: auto;
    padding-bottom: max(84px, env(safe-area-inset-bottom));
  }

  .hero__beam--two,
  .hero__vortex--outer,
  .hero__glow--six {
    display: none;
  }

  .hero__content {
    width: min(calc(100% - 32px), 560px);
    gap: 42px;
    margin-top: 56px;
    padding-bottom: 0;
  }

  .hero__copy {
    padding-left: 0;
  }

  .notice {
    max-height: 7.3em;
    margin-bottom: 40px;
    padding: 15px 16px;
    overflow: hidden;
    border: 1px solid rgba(71, 111, 179, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 14px 34px rgba(48, 88, 154, 0.07);
    font-size: 13px;
    line-height: 1.74;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition:
      max-height 720ms var(--reveal-ease),
      color 260ms var(--ease),
      background 260ms var(--ease),
      transform 260ms var(--ease);
  }

  .notice.is-active {
    max-height: 26em;
    background: rgba(255, 255, 255, 0.76);
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }

  .notice.is-active::after {
    bottom: 7px;
    left: 16px;
  }

  .hero-title {
    width: min(100%, 380px);
  }

  .hero-subtitle {
    min-height: 2.8em;
    margin: 23px 0 31px;
    font-size: clamp(21px, 6.4vw, 27px);
    line-height: 1.42;
  }

  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .action-card {
    min-height: 126px;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
      0 16px 40px rgba(43, 84, 151, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .action-card--download {
    padding-right: 78px;
  }

  .action-card__platform-icon {
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .action-card__platform-icon svg {
    width: 34px;
    height: 34px;
  }

  .action-card__title {
    margin-bottom: 12px;
    font-size: clamp(17px, 4.9vw, 20px);
    line-height: 1.2;
  }

  .action-card__body,
  .action-card__meta {
    font-size: 12px;
  }

  .video-card {
    width: 100%;
    margin-top: 0;
    border-radius: 22px;
    box-shadow: 0 24px 62px rgba(34, 75, 151, 0.2);
    transform: none;
  }

  .video-cover,
  .video-player {
    border-radius: inherit;
  }

  .brand-showcase,
  .mind-atlas,
  .real-work,
  .future-horizon {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-showcase,
  .mind-atlas {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .genesis-intro__eyebrow,
  .mind-atlas__eyebrow,
  .trust-system__eyebrow,
  .real-work__eyebrow,
  .future-horizon__eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .genesis-intro h2,
  .mind-atlas__intro h2,
  .trust-system__intro h2,
  .real-work__intro h2,
  .future-horizon__intro h2 {
    font-size: clamp(34px, 9.8vw, 43px);
    letter-spacing: -0.045em;
    line-height: 1.16;
  }

  .genesis-stage {
    margin-top: 48px;
    translate: 0;
  }

  .brand-showcase__frame {
    width: min(76vw, 340px);
    margin-bottom: 88px;
  }

  .brand-showcase__name {
    top: calc(100% + 28px);
    padding: 8px 17px 9px;
    border: 1px solid rgba(81, 111, 164, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 14px 36px rgba(45, 79, 137, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-size: clamp(20px, 5.8vw, 24px);
    letter-spacing: 0.035em;
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
  }

  .genesis-orbit {
    top: min(38vw, 170px);
    opacity: 0.34;
  }

  .genesis-node {
    min-height: 0;
    margin-top: 10px;
    padding: 18px 16px;
    border: 1px solid rgba(55, 92, 153, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 12px 34px rgba(52, 88, 145, 0.055);
  }

  .genesis-epilogue {
    gap: 28px;
    margin-top: 68px;
  }

  .genesis-epilogue p {
    font-size: inherit;
    line-height: 1.72;
  }

  .genesis-epilogue p > span {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.72;
  }

  .genesis-epilogue__action {
    min-height: 46px;
    padding: 0 4px;
  }

  .mind-atlas__map {
    gap: 10px;
  }

  .mind-core {
    margin-bottom: 28px;
  }

  .mind-branch {
    min-height: 76px;
    padding: 14px 15px;
    border-radius: 16px;
    scroll-margin-top: 20px;
  }

  .mind-narratives {
    margin-top: 28px;
  }

  .mind-journey {
    padding: 22px 0 26px;
  }

  .mind-stage {
    min-height: 108px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.54);
  }

  .trust-system {
    padding: 70px 18px 74px;
  }

  .trust-system__intro {
    margin-bottom: 36px;
  }

  .trust-system__architecture {
    gap: 24px;
  }

  .trust-node {
    min-height: 196px;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .trust-gateway {
    width: 142px;
    height: 142px;
  }

  .trust-gateway__copy {
    width: min(250px, 78vw);
    margin-top: 168px;
    line-height: 1.65;
  }

  .trust-principles {
    margin-top: 38px;
    border-radius: 22px;
  }

  .trust-principle {
    min-height: 0;
    padding: 25px 22px;
  }

  .real-work {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .real-work__intro {
    gap: 24px;
    margin-bottom: 34px;
  }

  .real-work__catalog-status {
    justify-self: start;
  }

  .real-work__console {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border-radius: 24px;
  }

  .real-work__rail {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(55, 93, 153, 0.09);
    overscroll-behavior-x: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .real-work__rail::-webkit-scrollbar {
    display: none;
  }

  .real-work__rail-label {
    display: none;
  }

  .work-tab {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    min-height: 44px;
    gap: 8px;
    justify-content: center;
    padding: 0 15px;
    border-color: rgba(64, 99, 153, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 5px 16px rgba(48, 82, 138, 0.035);
    scroll-snap-align: center;
    white-space: nowrap;
  }

  .work-tab + .work-tab {
    margin-top: 0;
  }

  .work-tab__index {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .work-tab__copy {
    display: block;
    gap: 0;
  }

  .work-tab__copy strong {
    font-size: 13px;
    line-height: 1;
  }

  .work-tab__copy small {
    display: none;
  }

  .work-tab > i {
    width: 5px;
    height: 5px;
  }

  .work-tab:hover,
  .work-tab:focus-visible,
  .work-tab.is-active {
    transform: none;
  }

  .work-tab.is-active {
    border-color: color-mix(in srgb, var(--work-accent) 26%, rgba(58, 94, 150, 0.08));
    background: linear-gradient(
      105deg,
      color-mix(in srgb, var(--work-accent) 13%, #fff),
      rgba(255, 255, 255, 0.9)
    );
    box-shadow:
      inset 0 -2px 0 color-mix(in srgb, var(--work-accent) 66%, #fff),
      0 8px 22px color-mix(in srgb, var(--work-accent) 12%, transparent);
  }

  .real-work__stage {
    width: 100%;
    padding: 30px 17px 34px;
    border-top: 0;
  }

  .capability-panel__head {
    padding-right: 3px;
    padding-left: 3px;
  }

  .capability-row {
    padding: 18px;
    border-radius: 16px;
  }

  .future-horizon {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .future-horizon__intro {
    margin-bottom: 44px;
  }

  .future-horizon__status {
    width: fit-content;
    max-width: 100%;
    margin-top: 25px;
    white-space: normal;
    line-height: 1.5;
  }

  .horizon-observatory {
    border-radius: 25px;
  }

  .horizon-nav {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 10px;
    touch-action: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .horizon-nav__label {
    display: block;
    grid-column: 1 / -1;
    margin: 3px 4px 7px;
    color: #8092ae;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .horizon-tab {
    min-width: 0;
    min-height: 78px;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 11px 6px 14px;
    border-radius: 14px;
    text-align: center;
  }

  .horizon-tab + .horizon-tab {
    margin-top: 0;
  }

  .horizon-tab__index {
    align-self: auto;
    padding-top: 0;
    font-size: 8px;
  }

  .horizon-tab__copy {
    gap: 0;
    min-width: 0;
  }

  .horizon-tab__copy strong {
    font-size: clamp(12px, 3.7vw, 15px);
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .horizon-tab__copy small {
    display: none;
  }

  .horizon-tab__signal {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 5px;
    height: 5px;
  }

  .horizon-tab__progress {
    right: 10px;
    bottom: 7px;
    left: 10px;
  }

  .horizon-tab:hover,
  .horizon-tab:focus-visible,
  .horizon-tab.is-active {
    transform: none;
  }

  .horizon-tab.is-active {
    box-shadow:
      inset 0 -2px 0 color-mix(in srgb, var(--horizon-accent) 72%, #fff),
      0 9px 23px color-mix(in srgb, var(--horizon-accent) 10%, transparent);
  }

  .horizon-chamber,
  .horizon-panel {
    min-height: 680px;
  }

  .horizon-panel {
    gap: 20px;
    padding: 54px 20px 34px;
  }

  .horizon-panel__copy h3 {
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.2;
  }

  .horizon-panel__copy > p {
    line-height: 1.78;
  }

  .horizon-vision {
    min-height: 360px;
    transform: scale(0.78) translate3d(calc(var(--horizon-x) * 0.45), calc(var(--horizon-y) * 0.45), 0);
  }

  .future-horizon__epilogue {
    margin-top: 72px;
  }

  .future-horizon__statement {
    padding-top: 29px;
  }

  .future-horizon__statement p {
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.62;
  }

  .future-horizon__return {
    min-height: 52px;
    margin-top: 42px;
  }

  .footer-inner {
    width: min(calc(100% - 36px), 560px);
    gap: 34px;
    padding: 44px 0 max(40px, env(safe-area-inset-bottom));
    text-align: center;
    transform: none;
  }

  .footer-brand img {
    width: 170px;
    margin: 0 auto 20px;
  }

  .social-links {
    justify-content: center;
    gap: 10px;
    margin: 0 0 20px;
  }

  .social-links a,
  .social-links > .social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(44, 82, 145, 0.08);
    border-radius: 14px;
    background: #f8faff;
  }

  .copyright,
  .record-link {
    margin-right: 0;
    margin-left: 0;
    font-size: 12px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .footer-column {
    padding: 16px 10px;
    border: 1px solid rgba(46, 83, 145, 0.065);
    border-radius: 17px;
    background: #fbfcff;
  }

  .footer-column h2 {
    font-size: 15px;
  }

  .footer-column a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin: 7px auto 0;
    font-size: 13px;
  }

  .breadcrumb a,
  .form-row a,
  .form-note a,
  .back-link,
  .auth-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .check-row {
    min-height: 44px;
  }

  .check-row input {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .check-row a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .brand-showcase.is-motion-ready .genesis-intro,
  .mind-atlas.is-motion-ready .mind-atlas__intro,
  .trust-system.is-motion-ready .trust-system__intro,
  .real-work.is-motion-ready .real-work__intro,
  .future-horizon.is-motion-ready .future-horizon__intro {
    transform: translateY(14px);
  }

  .mind-atlas.is-motion-ready .mind-atlas__map,
  .trust-system.is-motion-ready .trust-system__architecture,
  .real-work.is-motion-ready .real-work__console,
  .future-horizon.is-motion-ready .horizon-observatory {
    transform: translateY(20px) scale(0.995);
  }

  html[lang="en"] .work-tab__copy strong {
    font-size: 12px;
  }

  html[lang="en"] .horizon-tab__copy strong {
    font-size: clamp(10px, 2.9vw, 12px);
  }
}

@media (max-width: 370px) {
  .site-header {
    width: calc(100% - 16px);
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .hero__content {
    width: calc(100% - 24px);
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: 108px;
  }

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

  .social-links {
    gap: 4px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  [role="tab"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .brand:hover,
  .notice:hover,
  .action-card:hover,
  .video-cover:hover img,
  .video-cover:hover .play-button,
  .genesis-node:hover,
  .mind-branch:hover,
  .trust-node:hover,
  .work-tab:hover,
  .horizon-tab:hover,
  .social-links a:hover {
    transform: none;
  }

  .action-card:active,
  .mobile-menu-toggle:active,
  .mind-branch:active,
  .trust-node:active,
  .work-tab:active,
  .horizon-tab:active {
    transform: scale(0.985);
  }
}

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

  .real-work__future-bridge i {
    animation: none;
  }

  .future-horizon__intro,
  .horizon-observatory,
  .future-horizon__epilogue,
  .future-horizon__statement p,
  .future-horizon__statement span,
  .future-horizon__statement::before,
  .future-horizon__statement::after {
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .future-horizon.is-motion-ready .future-horizon__intro,
  .future-horizon.is-motion-ready .horizon-observatory,
  .future-horizon.is-motion-ready .future-horizon__epilogue,
  .future-horizon.is-motion-ready .future-horizon__statement p,
  .future-horizon.is-motion-ready .future-horizon__statement span,
  .future-horizon.is-motion-ready .future-horizon__statement::before,
  .future-horizon.is-motion-ready .future-horizon__statement::after {
    opacity: 1;
    transform: none;
  }
}

/* Seamless hero film — the image dissolves into the surrounding light. */
.hero__copy {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  z-index: 0;
  top: -120px;
  right: calc((100vw - 100%) / -2 + 172px);
  width: min(1200px, 92vw);
  height: 656px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  isolation: isolate;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 6%,
      rgba(0, 0, 0, 0.52) 17%,
      #000 22%,
      #000 78%,
      rgba(0, 0, 0, 0.52) 83%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 7%,
      rgba(0, 0, 0, 0.52) 18%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.52) 82%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 6%,
      rgba(0, 0, 0, 0.52) 17%,
      #000 22%,
      #000 78%,
      rgba(0, 0, 0, 0.52) 83%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.08) 7%,
      rgba(0, 0, 0, 0.52) 18%,
      #000 28%,
      #000 72%,
      rgba(0, 0, 0, 0.52) 82%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    );
  mask-composite: intersect;
}

.hero-video::before {
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(243, 249, 255, 0.94), rgba(232, 242, 255, 0.5) 15%, transparent 36%),
    radial-gradient(
      ellipse 94% 34% at 48% -4%,
      rgba(244, 249, 255, 0.96) 0%,
      rgba(237, 246, 255, 0.74) 34%,
      rgba(224, 239, 255, 0.3) 65%,
      transparent 100%
    ),
    linear-gradient(0deg, rgba(236, 246, 255, 0.72), transparent 18%);
  filter: none;
  opacity: 1;
  transform: none;
  animation: none;
  pointer-events: none;
  content: "";
}

.hero-video::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 5%;
  width: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(224, 238, 255, 0.74), rgba(231, 241, 255, 0.24) 48%, transparent);
  filter: blur(24px);
  mix-blend-mode: screen;
}

.hero-video__media {
  position: absolute;
  z-index: 0;
  inset: -2%;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(1.02);
  transform: scale(1.015);
  transition: filter 1.2s ease, transform 2.2s var(--ease);
}

.hero-video:hover .hero-video__media {
  filter: saturate(1) contrast(1.025) brightness(1.035);
  transform: scale(1.03);
}

.hero-video__frost {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 23% 48%, rgba(188, 216, 255, 0.22), transparent 42%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.24), transparent 44%),
    linear-gradient(270deg, rgba(221, 237, 255, 0.72), transparent 24%);
  backdrop-filter: blur(1.2px);
}

.hero-video__frost::before {
  position: absolute;
  top: -28px;
  right: -12%;
  left: -12%;
  height: 280px;
  content: "";
  border-radius: 0 0 48% 56% / 0 0 38% 32%;
  background: radial-gradient(
    ellipse 86% 88% at 46% 0%,
    rgba(244, 249, 255, 0.98) 0%,
    rgba(236, 246, 255, 0.8) 32%,
    rgba(222, 238, 255, 0.34) 67%,
    transparent 100%
  );
  filter: blur(34px);
  transform: translateY(-18px) rotate(-1.4deg);
}

.hero-video__frost::after {
  position: absolute;
  right: -12%;
  bottom: -34px;
  left: -12%;
  height: 220px;
  content: "";
  border-radius: 52% 44% 0 0 / 34% 40% 0 0;
  background: radial-gradient(
    ellipse 88% 86% at 54% 100%,
    rgba(239, 247, 255, 0.96) 0%,
    rgba(229, 241, 255, 0.72) 34%,
    rgba(215, 234, 255, 0.28) 68%,
    transparent 100%
  );
  filter: blur(30px);
  transform: translateY(16px) rotate(1deg);
}

@media (max-width: 1180px) {
  .hero-video {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    width: calc(100% + 56px);
    height: 560px;
    min-height: 0;
    margin: -60px -28px -72px;
    transform: none;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.56) 15%,
      #000 28%,
      #000 78%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.56) 15%,
      #000 28%,
      #000 78%,
      transparent 100%
    );
  }

  .hero-video::before {
    background:
      linear-gradient(180deg, rgba(241, 248, 255, 0.76), transparent 24%, transparent 74%, rgba(238, 246, 255, 0.72));
  }

  .hero-video__frost::before {
    height: 150px;
    filter: blur(22px);
    transform: translateY(-24px);
  }

  .hero-video::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-video {
    width: calc(100% + 40px);
    height: 430px;
    min-height: 0;
    aspect-ratio: auto;
    margin: -52px -20px -64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-video__media {
    transform: none !important;
  }
}

/* Full-stage capability carousel */
.real-work__stage:has(.capability-showcase-host) {
  padding: 0;
  overflow: hidden;
}

.capability-showcase-host,
.capability-showcase,
.capability-showcase__deck,
.capability-showcase__slides {
  width: 100%;
}

.capability-showcase__deck {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.capability-showcase__slide {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.capability-showcase__slide figcaption {
  order: -1;
  min-height: 54px;
  padding: 9px clamp(14px, 2vw, 24px);
  border-top: 0;
  border-bottom: 1px solid rgba(61, 99, 158, 0.09);
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.8));
}

.capability-showcase__timeline {
  --timeline-scale: 0;
  position: absolute;
  z-index: 5;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 6px;
  display: flex;
  width: max-content;
  max-width: calc(100% - 28px);
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 18px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateX(-50%);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.capability-showcase__timeline::-webkit-scrollbar {
  display: none;
}

.capability-showcase__step,
.capability-showcase__step:hover,
.capability-showcase__step:focus-visible,
.capability-showcase__step.is-active {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.capability-showcase__timeline::before,
.capability-showcase__timeline::after {
  display: block;
  left: 48px;
  right: 48px;
  top: 22px;
  bottom: auto;
  width: auto;
  height: 1px;
}

.capability-showcase__timeline::after {
  transform: scaleX(var(--timeline-scale));
  transform-origin: left;
}

.capability-showcase__step {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 112px;
  min-height: 58px;
  place-items: start center;
  gap: 5px;
  padding: 3px 10px 5px;
  text-align: center;
}

.capability-showcase__step > span:first-child {
  min-height: 22px;
}

.capability-showcase__step > span:first-child i {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.capability-showcase__step > span:first-child b {
  display: none;
}

.capability-showcase__step-copy {
  display: block;
}

.capability-showcase__step-copy strong {
  display: block;
  font-size: 12px;
  white-space: nowrap;
}

.capability-showcase__step.is-active {
  transform: none;
}

.capability-showcase__step.is-active > span:first-child i {
  animation: capability-dot-breathe 1.9s ease-in-out infinite;
}

.capability-showcase__step.is-disabled {
  min-width: 140px;
  color: #9da6b3;
  cursor: not-allowed;
  opacity: 0.48;
  pointer-events: none;
}

.capability-showcase__step.is-disabled > span:first-child i {
  background: #aeb5bf;
  box-shadow: 0 0 0 1px rgba(91, 101, 115, 0.18);
  transform: none;
  animation: none;
}

.capability-showcase__step.is-disabled .capability-showcase__step-copy strong {
  color: #8e98a6;
}

.capability-showcase__timeline--pending {
  min-height: 0;
}

.capability-showcase__pending-node {
  width: 70px;
  min-height: 42px;
}

.capability-showcase__pending-node b {
  display: none;
}

@keyframes capability-dot-breathe {
  0%, 100% {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--work-focus) 10%, #fff), 0 0 8px color-mix(in srgb, var(--work-focus) 24%, transparent);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--work-focus) 13%, transparent), 0 0 20px color-mix(in srgb, var(--work-focus) 52%, transparent);
    transform: scale(1.3);
  }
}

@media (min-width: 1181px) {
  .real-work__console {
    grid-template-columns: 286px minmax(0, 1fr);
    min-height: 0;
  }

  .work-tab__copy strong {
    white-space: nowrap;
  }

  .real-work__stage,
  .work-panel,
  .capability-showcase-host,
  .capability-showcase,
  .capability-showcase__deck,
  .capability-showcase__slides,
  .capability-showcase__slide {
    height: 100%;
  }

  .work-panel {
    min-height: 610px;
  }

  .capability-showcase__media {
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 1180px) {
  .capability-showcase__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .capability-showcase__timeline {
    bottom: -2px;
    gap: 2px;
    max-width: calc(100% - 16px);
    padding: 8px 9px 6px;
    border-radius: 0;
  }

  .capability-showcase__timeline::before,
  .capability-showcase__timeline::after {
    left: 39px;
    right: 39px;
    top: 19px;
  }

  .capability-showcase__step {
    min-width: 92px;
    min-height: 51px;
    padding: 2px 6px 4px;
  }

  .capability-showcase__step > span:first-child {
    min-height: 20px;
  }

  .capability-showcase__step > span:first-child i {
    width: 11px;
    height: 11px;
  }

  .capability-showcase__step-copy {
    display: block;
  }

  .capability-showcase__step-copy strong {
    font-size: 10px;
  }

  .capability-showcase__slide figcaption {
    min-height: 49px;
  }
}

/* ── Pricing page ── */
.pricing-hero,
.pricing-surface {
  background:
    radial-gradient(circle at 12% 180px, rgba(195, 230, 255, 0.58), transparent 29%),
    radial-gradient(circle at 86% 130px, rgba(213, 203, 255, 0.44), transparent 27%),
    radial-gradient(circle at 72% 700px, rgba(198, 238, 255, 0.36), transparent 31%),
    linear-gradient(145deg, #ffffff 4%, #f9fbff 47%, #f4f9ff 100%);
}

.pricing-hero {
  min-height: 1040px;
}

.pricing-hero::before,
.pricing-surface::before {
  inset: 46px 5% auto;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 230, 255, 0.38), transparent 68%);
  filter: blur(50px);
  opacity: 0.72;
  animation: none;
}

.pricing-hero .soft-hero__mist,
.pricing-surface .soft-hero__mist {
  opacity: 0.22;
  filter: blur(70px);
}

.pricing-hero .soft-hero__mist--one,
.pricing-surface .soft-hero__mist--one {
  top: 420px;
  bottom: auto;
  background: rgba(106, 201, 255, 0.48);
}

.pricing-hero .soft-hero__mist--two,
.pricing-surface .soft-hero__mist--two {
  top: 92px;
  background: rgba(149, 137, 247, 0.38);
}

.pricing-page {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  padding-bottom: 112px;
}

.pricing-page__body {
  min-height: 0;
  margin: 54px 0 0;
}

.pricing-intro {
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #6d8fca;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.28em;
}

.pricing-intro__eyebrow::before,
.pricing-intro__eyebrow::after {
  width: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(87, 126, 194, 0.48));
}

.pricing-intro__eyebrow::after {
  transform: rotate(180deg);
}

.pricing-intro h1 {
  margin: 0;
  color: #102e62;
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.pricing-intro p {
  margin: 20px 0 0;
  color: #8091ac;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(89, 127, 185, 0.06);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 34px 90px rgba(57, 98, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
}

.pricing-section::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: rgba(157, 211, 255, 0.19);
  filter: blur(72px);
}

.pricing-section::before {
  top: -250px;
  right: -80px;
}

.pricing-section {
  padding: 34px;
}

.pricing-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 4px 5px 30px;
}

.pricing-section__heading > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pricing-section__index {
  display: inline-flex;
  align-items: center;
  color: #8da2c2;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.pricing-section__index::after {
  width: 22px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: rgba(89, 126, 181, 0.2);
}

.pricing-section__heading h2 {
  margin: 0;
  color: #183660;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.pricing-section__celebrate {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-left: 8px;
  vertical-align: -7px;
}

.pricing-section__celebrate svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.celebrate-halo {
  fill: rgba(255, 239, 230, 0.84);
}

.celebrate-spark--main {
  fill: #eb5c66;
}

.celebrate-spark--gold {
  fill: #e8ad3e;
}

.celebrate-spark--blue {
  fill: #5d9edb;
}

.celebrate-dot--one {
  fill: #7d70d7;
}

.celebrate-dot--two {
  fill: #e9a83e;
}

.pricing-section__heading p {
  margin: 0 2px 2px 0;
  color: #8796ad;
  font-size: 14px;
}

.reasoning-table-wrap {
  overflow-x: auto;
  border: 0;
  border-top: 1px solid rgba(72, 116, 185, 0.1);
  border-bottom: 1px solid rgba(72, 116, 185, 0.08);
  border-radius: 0;
  background: transparent;
  outline: none;
  scrollbar-color: rgba(94, 132, 194, 0.28) transparent;
  scrollbar-width: thin;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.reasoning-table-wrap:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 124, 255, 0.08);
}

.reasoning-table {
  width: 100%;
  min-width: 1140px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
}

.reasoning-table th,
.reasoning-table td {
  border-right: 0;
  border-bottom: 1px solid rgba(72, 116, 185, 0.07);
}

.reasoning-table tr > :last-child {
  border-right: 0;
}

.reasoning-table tbody tr:last-child > * {
  border-bottom: 0;
}

.reasoning-table thead th {
  height: 116px;
  padding: 22px 15px 19px;
  color: #2f507f;
  background: transparent;
  text-align: center;
  vertical-align: middle;
}

.reasoning-table thead th:first-child {
  width: 220px;
  padding-left: 25px;
  color: #8190a7;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-align: left;
}

.reasoning-table__number,
.reasoning-table thead strong,
.reasoning-table thead small {
  display: block;
}

.reasoning-table__number {
  margin-bottom: 6px;
  color: #9aabc3;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.reasoning-table thead strong {
  font-size: 18px;
  font-weight: 650;
}

.reasoning-table thead small {
  margin-top: 7px;
  color: #99a7bb;
  font-size: 11px;
  font-weight: 500;
}

.reasoning-table tbody th {
  height: 98px;
  padding: 20px 24px;
  color: #29466f;
  background: transparent;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

.reasoning-table__type-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-right: 10px;
  color: #4c87df;
  background: transparent;
  vertical-align: middle;
}

.reasoning-table__type-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.reasoning-table__type-icon--image {
  color: #7b78dc;
  background: transparent;
}

.reasoning-table__type-icon--image svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reasoning-table tbody th > span:last-child {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  vertical-align: middle;
}

.reasoning-table tbody th strong {
  font-size: 15px;
  font-weight: 640;
}

.reasoning-table tbody th small {
  color: #9aa8bc;
  font-size: 10px;
  font-weight: 520;
  letter-spacing: 0.03em;
}

.reasoning-table tbody td {
  height: 98px;
  padding: 18px 12px;
  color: #8090a8;
  background: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

.reasoning-table tbody td > span:last-child {
  display: block;
  margin-top: 8px;
}

.reasoning-signal {
  display: inline-flex;
  height: 24px;
  gap: 5px;
  align-items: flex-end;
}

.reasoning-signal i {
  display: block;
  width: 5px;
  border-radius: 99px;
  background: #e0e7f0;
}

.reasoning-signal i:nth-child(1) {
  height: 9px;
}

.reasoning-signal i:nth-child(2) {
  height: 16px;
}

.reasoning-signal i:nth-child(3) {
  height: 23px;
}

.reasoning-signal--low i:first-child,
.reasoning-signal--medium i:nth-child(-n + 2),
.reasoning-signal--high i {
  background: linear-gradient(180deg, #61a8ff, #4b7ee7);
  box-shadow: 0 4px 10px rgba(72, 129, 223, 0.17);
}

.reasoning-signal--medium i:nth-child(-n + 2) {
  background: linear-gradient(180deg, #739eff, #777ee8);
}

.reasoning-signal--high i {
  background: linear-gradient(180deg, #908bfa, #637fdc);
}

.reasoning-table .reasoning-table__pending {
  color: #a6adb8;
  background: rgba(229, 233, 239, 0.42);
}

.reasoning-table thead .reasoning-table__pending strong,
.reasoning-table thead .reasoning-table__pending small,
.reasoning-table thead .reasoning-table__pending .reasoning-table__number {
  color: #a5acb6;
}

.reasoning-signal--pending i {
  background: #cbd0d7;
  box-shadow: none;
}

.reasoning-table tbody td.reasoning-table__rates {
  height: 236px;
  padding: 22px 38px;
  color: #49688f;
  background: transparent;
  text-align: left;
}

.table-rate {
  height: 100%;
  min-height: 192px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.table-rate__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  gap: 18px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.table-rate__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 154px;
  gap: 18px;
  align-items: center;
  padding: 24px 58px 24px 26px;
  border-radius: 18px;
  background: rgba(239, 247, 255, 0.62);
  overflow: hidden;
}

.table-rate__item + .table-rate__item {
  border-left: 0;
  padding-left: 26px;
}

.table-rate__item--output {
  background: rgba(243, 241, 255, 0.58);
}

.table-rate__badge {
  position: absolute;
  top: 0;
  right: 18px;
  display: block;
  width: 23px;
  height: 27px;
  padding-top: 5px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  color: #fff;
  background: linear-gradient(180deg, #e85a64 0%, #ca3f4b 74%, #b93341 100%);
  filter: drop-shadow(0 2px 3px rgba(184, 45, 57, 0.14));
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.table-rate__badge::before {
  position: absolute;
  top: 2px;
  right: 4px;
  left: 4px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.34);
}

.table-rate__item > div {
  min-width: 0;
}

.table-rate__item small {
  display: block;
  margin-bottom: 17px;
  color: #3e5d88;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0.02em;
}

.table-rate__item s {
  display: block;
  color: #a8b3c2;
  font-size: 14px;
  font-weight: 570;
  line-height: 1.2;
}

.table-rate__discount {
  display: block;
  color: #214e8c;
  font-weight: 680;
  text-align: right;
  white-space: nowrap;
}

.table-rate__discount em {
  display: block;
  margin-bottom: 11px;
  color: #7186a6;
  font-size: 12px;
  font-style: normal;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.table-rate__discount b {
  display: block;
  color: #173f79;
  font-size: 42px;
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.table-rate__unit {
  display: block;
  margin-top: 12px;
  color: #8495ac;
  font-size: 12px;
  font-weight: 540;
  letter-spacing: 0.04em;
}

.pricing-section__footer {
  display: flex;
  min-height: 52px;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: #8797ad;
  background: transparent;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.pricing-section__footer strong {
  color: #5f8490;
  font-weight: 650;
}

.pricing-section__pulse {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #78bba3;
  box-shadow: 0 0 0 5px rgba(120, 187, 163, 0.1);
}

/* ── Pay-as-you-go plans ── */
.plans-section {
  margin-top: 92px;
}

.plans-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding: 0 6px;
}

.plans-section__heading > div {
  display: flex;
  gap: 13px;
  align-items: center;
}

.plans-section__index {
  display: inline-flex;
  align-items: center;
  color: #8da2c2;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.plans-section__index::after {
  width: 22px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: rgba(89, 126, 181, 0.2);
}

.plans-section__heading h2 {
  margin: 0;
  color: #173660;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.plans-section__heading > p {
  margin: 0 2px 4px 0;
  color: #8a99ae;
  font-size: 14px;
  letter-spacing: 0.06em;
}

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

.plan-card {
  position: relative;
  min-height: 420px;
  padding: 38px 40px 34px;
  overflow: hidden;
  border: 1px solid rgba(79, 127, 199, 0.06);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(130, 197, 255, 0.18), transparent 34%),
    rgba(249, 252, 255, 0.78);
  box-shadow:
    0 24px 70px rgba(53, 94, 158, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.plan-card--team {
  background:
    radial-gradient(circle at 100% 0, rgba(167, 145, 247, 0.17), transparent 34%),
    rgba(249, 250, 255, 0.8);
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #65a9f3, rgba(101, 169, 243, 0.08));
}

.plan-card--team::before {
  background: linear-gradient(90deg, #817ce5, rgba(129, 124, 229, 0.08));
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.plan-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #83a0c4;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.plan-card__header h3 {
  margin: 0;
  color: #24466f;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.plan-card__audience {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #6682a6;
  background: rgba(232, 242, 253, 0.78);
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
}

.plan-card--team .plan-card__audience {
  color: #706fae;
  background: rgba(237, 234, 253, 0.76);
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 46px;
  color: #173e78;
}

.plan-card__price > span {
  margin-top: 10px;
  color: #6882a9;
  font-size: 20px;
  font-weight: 650;
}

.plan-card__price strong {
  font-size: clamp(52px, 5.4vw, 72px);
  font-weight: 610;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.plan-card__price-note {
  margin: 14px 0 0 30px;
  color: #8b9bb0;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.plan-card__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(75, 121, 190, 0.08);
}

.plan-card__details > div {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid rgba(75, 121, 190, 0.07);
}

.plan-card__details > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.plan-card__details > div:last-child {
  padding-right: 0;
}

.plan-card__details dt {
  margin-bottom: 8px;
  color: #98a7ba;
  font-size: 10px;
  font-weight: 580;
}

.plan-card__details dd {
  margin: 0;
  color: #476485;
  font-size: 13px;
  font-weight: 640;
  white-space: nowrap;
}

.plan-card__balance dd {
  color: #2c67ae;
  font-size: 15px;
}

.plan-card--team .plan-card__balance dd {
  color: #6d67bc;
}

.plan-benefits {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 30px 34px;
  border: 1px solid rgba(75, 121, 190, 0.05);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 62px rgba(53, 94, 158, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.plan-benefits__intro > span {
  display: block;
  margin-bottom: 8px;
  color: #91a3bc;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.plan-benefits__intro > strong {
  color: #36577e;
  font-size: 16px;
  font-weight: 650;
}

.plan-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-benefit {
  display: flex;
  min-width: 0;
  gap: 11px;
  padding: 2px 18px;
  border-left: 1px solid rgba(75, 121, 190, 0.07);
}

.plan-benefit > span {
  flex: 0 0 auto;
  color: #a4b1c3;
  font-size: 9px;
  font-weight: 720;
}

.plan-benefit strong {
  display: block;
  color: #4a6789;
  font-size: 12px;
  font-weight: 650;
}

.plan-benefit p {
  margin: 7px 0 0;
  color: #96a4b6;
  font-size: 10px;
  line-height: 1.55;
}

.plan-benefit--accent strong {
  color: #6e68bd;
}

.plan-benefit--member strong {
  color: #af7543;
}

/* ── Memorial member card ── */
.member-card-section {
  margin-top: 96px;
}

.member-card-section__heading {
  margin-bottom: 32px;
}

.member-card-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(76, 86, 113, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 50% 31%, rgba(185, 194, 220, 0.105), transparent 36%),
    radial-gradient(circle at 18% 3%, rgba(80, 104, 151, 0.1), transparent 25%),
    linear-gradient(155deg, #101422 0%, #0b0f1d 55%, #070912 100%);
  box-shadow:
    0 30px 80px rgba(27, 31, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.member-card-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(166, 175, 203, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 175, 203, 0.045) 1px, transparent 1px);
  background-position: center;
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 8%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 8%, transparent 70%);
}

.member-card-showcase::after {
  position: absolute;
  right: -12%;
  bottom: 7%;
  left: -12%;
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(150, 160, 190, 0.18), transparent);
  box-shadow: 0 0 42px 8px rgba(17, 22, 41, 0.24);
}

.member-card-showcase__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(132, 143, 174, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.member-card-showcase__orb--one {
  top: 74px;
  left: 50%;
  width: 660px;
  height: 660px;
  transform: translateX(-50%) rotateX(72deg);
  box-shadow: 0 0 0 34px rgba(132, 143, 174, 0.012), 0 0 0 90px rgba(132, 143, 174, 0.008);
}

.member-card-showcase__orb--two {
  top: 29%;
  left: 50%;
  width: 760px;
  height: 220px;
  transform: translateX(-50%) rotate(-7deg);
  border-style: dashed;
}

.member-card-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 42px 24px;
  color: #d7d5ff;
}

.member-card-stage__meta,
.member-card-stage__foot {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(206, 210, 242, 0.52);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.member-card-stage__meta {
  margin-bottom: 8px;
}

.member-card-stage__meta span:first-child {
  color: rgba(213, 206, 255, 0.76);
}

.member-card-stage__meta i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #9e8cff;
  box-shadow: 0 0 12px 3px rgba(150, 129, 255, 0.52);
  vertical-align: 1px;
}

.member-card-viewport {
  --card-pitch: -5deg;
  --card-yaw: -8deg;
  --sheen-x: 72%;
  --sheen-y: 18%;
  position: relative;
  width: min(760px, 86%);
  aspect-ratio: 1.42 / 1;
  outline: none;
  cursor: grab;
  perspective: 1500px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.member-card-viewport:focus-visible::after {
  display: none;
}

.member-card-viewport:focus-visible .memorial-card__face {
  outline: 1px solid rgba(175, 184, 211, 0.28);
  outline-offset: 3px;
}

.member-card-viewport.is-dragging {
  cursor: grabbing;
}

.member-card-shadow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 63%;
  height: 9%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 4, 0.82), rgba(0, 0, 5, 0.35) 48%, transparent 73%);
  filter: blur(8px);
  opacity: var(--card-shadow-opacity, 0.68);
  transform: translateX(-50%) scaleX(var(--card-shadow-scale, 1));
  transition: opacity 180ms ease, transform 180ms ease;
}

.memorial-card {
  --card-depth: 6px;
  position: absolute;
  top: 48%;
  left: 50%;
  width: 92%;
  aspect-ratio: 1.586 / 1;
  container-type: inline-size;
  transform: translate(-50%, -50%) rotateZ(-0.7deg) rotateX(var(--card-pitch)) rotateY(var(--card-yaw));
  transform-style: preserve-3d;
  will-change: transform;
}

.memorial-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 209, 222, 0.2);
  border-radius: 4.35% / 6.9%;
  background: #050815;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 34px rgba(0, 0, 0, 0.1),
    0 26px 48px rgba(0, 1, 7, 0.48);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.memorial-card__face--front {
  transform: translateZ(calc(var(--card-depth) / 2));
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.memorial-card__face--back {
  display: none;
  transform: rotateY(180deg) translateZ(calc(var(--card-depth) / 2));
}

.member-card-viewport[data-card-face="back"] .memorial-card__face--front img {
  transform: scaleX(-1);
}

.memorial-card__face img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: saturate(0.84) contrast(0.96) brightness(0.9);
  object-fit: cover;
}

.memorial-card__number {
  position: absolute;
  top: 64.6%;
  left: 50%;
  z-index: 1;
  color: rgba(238, 230, 240, 0.88);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(12px, 4.1cqw, 30px);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1;
  text-shadow: 0 0 7px rgba(199, 174, 231, 0.22), 0 1px 1px rgba(0, 0, 0, 0.72);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  transition: opacity 90ms linear;
}

.member-card-viewport[data-card-face="back"] .memorial-card__number {
  visibility: hidden;
  opacity: 0;
}

.memorial-card__matte,
.memorial-card__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.memorial-card__matte {
  z-index: 2;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.72) 0 0.45px, transparent 0.82px),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.4) 0 0.4px, transparent 0.76px),
    radial-gradient(circle at 45% 80%, rgba(5, 7, 18, 0.82) 0 0.52px, transparent 0.92px);
  background-position: 0 0, 1px 2px, 2px 1px;
  background-size: 2.6px 2.6px, 3.8px 3.8px, 4.7px 4.7px;
  mix-blend-mode: soft-light;
}

.memorial-card__sheen {
  z-index: 3;
  opacity: var(--card-sheen-opacity, 0.18);
  background:
    radial-gradient(ellipse at var(--sheen-x) var(--sheen-y), rgba(239, 241, 246, 0.28), transparent 25%),
    linear-gradient(112deg, transparent 26%, rgba(229, 232, 240, 0.12) 43%, transparent 61%);
  background-size: 100% 100%, 230% 100%;
  background-position: center, var(--sheen-shift, 40%) 0;
  mix-blend-mode: screen;
}

.memorial-card__edge {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #262936, #7e818b 16%, #31343f 44%, #151720 78%, #555862);
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.24);
  backface-visibility: visible;
}

.memorial-card__edge--top,
.memorial-card__edge--bottom {
  left: 4.2%;
  width: 91.6%;
  height: var(--card-depth);
  transform: rotateX(90deg);
}

.memorial-card__edge--top {
  top: calc(var(--card-depth) / -2);
}

.memorial-card__edge--bottom {
  bottom: calc(var(--card-depth) / -2);
}

.memorial-card__edge--right,
.memorial-card__edge--left {
  top: 6.7%;
  width: var(--card-depth);
  height: 86.6%;
  background: linear-gradient(#232631, #898b92 18%, #373a43 52%, #12141c 82%, #5b5e67);
  transform: rotateY(90deg);
}

.memorial-card__edge--right {
  right: calc(var(--card-depth) / -2);
}

.memorial-card__edge--left {
  left: calc(var(--card-depth) / -2);
}

.member-card-controls {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: -6px;
}

.member-card-orbit {
  --orbit-angle: -8deg;
  position: relative;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
  color: #cbc4ff;
  background: radial-gradient(circle, rgba(107, 92, 196, 0.18), rgba(17, 19, 49, 0.68) 58%, rgba(12, 14, 36, 0.92) 59%);
  box-shadow:
    0 12px 28px rgba(0, 0, 9, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: grab;
  touch-action: none;
}

.member-card-orbit::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(179, 165, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.member-card-orbit:hover {
  color: #eeeaff;
  background: radial-gradient(circle, rgba(125, 105, 224, 0.26), rgba(25, 27, 65, 0.78) 58%, rgba(12, 14, 36, 0.96) 59%);
}

.member-card-orbit:focus-visible {
  box-shadow: 0 0 0 4px rgba(155, 137, 255, 0.18), 0 12px 28px rgba(0, 0, 9, 0.3);
}

.member-card-orbit.is-dragging {
  cursor: grabbing;
}

.member-card-orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.25;
}

.member-card-orbit svg circle {
  stroke: rgba(161, 148, 241, 0.17);
  stroke-dasharray: 1 6;
}

.member-card-orbit__arrow {
  stroke-linejoin: round;
}

.member-card-orbit__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border: 2px solid #e5e0ff;
  border-radius: 50%;
  background: #8273df;
  box-shadow: 0 0 12px 3px rgba(143, 122, 255, 0.6);
  transform: rotate(var(--orbit-angle)) translateY(-39px);
}

.member-card-orbit__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.member-card-orbit__label strong {
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.member-card-orbit__label small {
  margin-top: 2px;
  color: rgba(202, 199, 232, 0.48);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.member-card-controls__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 132px;
}

.member-card-controls__copy strong {
  color: rgba(230, 228, 255, 0.84);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.member-card-controls__copy span {
  color: rgba(191, 196, 226, 0.47);
  font-size: 10px;
}

.member-card-reset {
  padding: 7px 10px;
  border: 1px solid rgba(166, 155, 234, 0.16);
  border-radius: 999px;
  color: rgba(211, 210, 237, 0.54);
  font: inherit;
  font-size: 10px;
  background: rgba(23, 25, 58, 0.42);
  cursor: pointer;
}

.member-card-reset:hover,
.member-card-reset:focus-visible {
  border-color: rgba(178, 162, 255, 0.45);
  color: #e0dcff;
  outline: none;
}

.member-card-stage__foot {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 136, 206, 0.09);
}

.member-card-stage__foot span:first-child {
  color: rgba(222, 217, 255, 0.72);
}

.member-card-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 30px 8px 0;
  list-style: none;
}

.member-card-features li {
  display: flex;
  min-width: 0;
  gap: 14px;
  padding: 2px 34px;
  border-left: 1px solid rgba(75, 121, 190, 0.08);
}

.member-card-features li:first-child {
  padding-left: 4px;
  border-left: 0;
}

.member-card-features li:last-child {
  padding-right: 4px;
}

.member-card-features li > span {
  color: #98a9c0;
  font-size: 9px;
  font-weight: 720;
}

.member-card-features strong {
  display: block;
  color: #3f5f84;
  font-size: 13px;
  font-weight: 650;
}

.member-card-features p {
  margin: 7px 0 0;
  color: #91a0b3;
  font-size: 11px;
  line-height: 1.55;
}

/* ── Corporate transfer details ── */
.corporate-transfer-section {
  margin-top: 104px;
}

.corporate-transfer-section__heading {
  margin-bottom: 32px;
}

.corporate-account-panel {
  position: relative;
  overflow: hidden;
  padding: 14px 38px;
  border: 1px solid rgba(75, 121, 190, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(134, 181, 246, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    0 24px 72px rgba(53, 94, 158, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.corporate-account-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #72b3ec, rgba(112, 139, 221, 0.28), transparent 76%);
}

.corporate-account-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.corporate-account-table tr + tr {
  border-top: 1px solid rgba(75, 121, 190, 0.08);
}

.corporate-account-table th,
.corporate-account-table td {
  padding: 23px 8px;
  vertical-align: middle;
}

.corporate-account-table th {
  width: 210px;
  color: #8a9bb1;
  font-size: 11px;
  font-weight: 590;
  letter-spacing: 0.08em;
  text-align: left;
}

.corporate-account-table td {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #405f83;
  font-size: 15px;
  font-weight: 570;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.corporate-account-table__value {
  min-width: 0;
}

.corporate-account-copy {
  position: relative;
  display: inline-flex;
  min-width: 66px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(55, 119, 194, 0.26);
  border-radius: 9px;
  color: rgba(55, 119, 194, 0.56);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.corporate-account-copy::before {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 2px;
  content: "";
  box-shadow: 3px -3px 0 -1px #fff, 3px -3px 0 0 currentColor;
}

.corporate-account-table td:hover .corporate-account-copy,
.corporate-account-copy:focus-visible,
.corporate-account-copy.is-copied {
  border-color: rgba(55, 119, 194, 0.68);
  color: #3777c2;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 16px rgba(47, 100, 170, 0.06);
}

.corporate-account-copy:hover,
.corporate-account-copy:focus-visible {
  border-color: #2f6fb9;
  color: #2f6fb9;
  background: #fff;
  outline: none;
  box-shadow: 0 7px 18px rgba(47, 100, 170, 0.11);
}

.corporate-account-copy.is-copied {
  color: #2f75aa;
  background: #f4fbff;
}

.corporate-account-table__company td {
  color: #214a79;
  font-size: 18px;
  font-weight: 660;
  letter-spacing: 0.01em;
}

.corporate-account-table__code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.055em;
}

.corporate-account-table__account th {
  color: #6687af;
}

.corporate-account-table__account td {
  color: #315f9c;
  font-size: 21px;
  font-weight: 680;
  letter-spacing: 0.08em;
}

@media (max-width: 1040px) {
  .plan-card__details > div {
    padding: 0 12px;
  }

  .plan-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 760px) {
  .pricing-hero {
    min-height: auto;
  }

  .pricing-page {
    width: min(100% - 34px, 620px);
    padding: 18px 0 72px;
  }

  .pricing-page .breadcrumb {
    padding-top: 14px;
  }

  .pricing-page__body {
    margin-top: 40px;
  }

  .pricing-intro {
    margin-bottom: 46px;
  }

  .pricing-intro h1 {
    font-size: 42px;
  }

  .pricing-intro p {
    margin-top: 14px;
    font-size: 15px;
  }

  .pricing-section {
    padding: 23px;
    border-radius: 23px;
  }

  .pricing-section__heading {
    display: block;
    padding: 2px 1px 23px;
  }

  .pricing-section__heading p {
    margin: 11px 0 0 42px;
    font-size: 12px;
  }

  .reasoning-table-wrap {
    overflow: visible;
    border-radius: 0;
  }

  .reasoning-table {
    display: block;
    min-width: 0;
  }

  .reasoning-table thead {
    display: none;
  }

  .reasoning-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .reasoning-table tbody tr {
    display: contents;
  }

  .reasoning-table tbody th {
    order: 1;
    display: flex;
    width: 100%;
    min-height: 76px;
    height: auto;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(72, 116, 185, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
  }

  .reasoning-table tbody td.reasoning-table__rates {
    order: 2;
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .reasoning-table tbody td.reasoning-table__pending {
    display: none;
  }

  .table-rate {
    min-height: 0;
  }

  .table-rate__items {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .table-rate__item,
  .table-rate__item + .table-rate__item {
    min-height: 142px;
    padding: 24px 20px;
    border: 1px solid rgba(72, 116, 185, 0.08);
    border-radius: 16px;
  }

  .table-rate__item + .table-rate__item {
    border-left: 1px solid rgba(72, 116, 185, 0.08);
  }

  .table-rate__badge {
    top: 16px;
    right: 16px;
  }

  .plans-section {
    margin-top: 64px;
  }

  .plans-section__heading {
    display: block;
    margin-bottom: 24px;
    padding: 0 2px;
  }

  .plans-section__heading > p {
    margin: 10px 0 0 45px;
    font-size: 12px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    min-height: auto;
    padding: 30px 28px 28px;
    border-radius: 23px;
  }

  .plan-card__price {
    margin-top: 38px;
  }

  .plan-card__price strong {
    font-size: 58px;
  }

  .plan-card__details {
    margin-top: 34px;
  }

  .plan-benefits {
    padding: 28px;
    border-radius: 22px;
  }

  .plan-benefits__grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .plan-benefit {
    padding: 18px 0;
    border-top: 1px solid rgba(75, 121, 190, 0.08);
    border-left: 0;
  }

  .plan-benefit:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .plan-benefit:last-child {
    padding-bottom: 0;
  }

  .member-card-section {
    margin-top: 68px;
  }

  .member-card-section__heading {
    display: block;
    margin-bottom: 24px;
    padding: 0 2px;
  }

  .member-card-section__heading > p {
    margin: 10px 0 0 45px;
    font-size: 12px;
  }

  .member-card-stage {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .member-card-showcase {
    border-radius: 24px;
  }

  .member-card-viewport {
    width: 100%;
    aspect-ratio: 1.34 / 1;
  }

  .memorial-card {
    width: 94%;
  }

  .member-card-stage__meta,
  .member-card-stage__foot {
    font-size: 8px;
  }

  .member-card-controls {
    margin-top: -12px;
  }

  .member-card-features {
    grid-template-columns: 1fr;
    padding: 24px 4px 0;
  }

  .member-card-features li {
    padding: 18px 0;
    border-top: 1px solid rgba(75, 121, 190, 0.08);
    border-left: 0;
  }

  .member-card-features li:first-child {
    padding: 0 0 18px;
    border-top: 0;
  }

  .member-card-features li:last-child {
    padding: 18px 0 0;
  }

  .corporate-transfer-section {
    margin-top: 72px;
  }

  .corporate-transfer-section__heading {
    display: block;
    margin-bottom: 24px;
    padding: 0 2px;
  }

  .corporate-transfer-section__heading > p {
    margin: 10px 0 0 45px;
    font-size: 12px;
  }

  .corporate-account-panel {
    padding: 8px 24px;
    border-radius: 23px;
  }

  .corporate-account-table,
  .corporate-account-table tbody,
  .corporate-account-table tr,
  .corporate-account-table th,
  .corporate-account-table td {
    display: block;
    width: 100%;
  }

  .corporate-account-table tr {
    padding: 19px 0;
  }

  .corporate-account-table th,
  .corporate-account-table td {
    padding: 0;
  }

  .corporate-account-table th {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .corporate-account-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .corporate-account-copy {
    min-width: 62px;
    height: 30px;
    margin-top: -3px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .corporate-account-table__company td {
    font-size: 17px;
  }

  .corporate-account-table__account td {
    font-size: 19px;
  }

}

@media (max-width: 460px) {
  .pricing-page {
    width: calc(100% - 24px);
  }

  .pricing-intro h1 {
    font-size: 38px;
  }

  .pricing-section {
    padding: 16px;
    border-radius: 20px;
  }

  .pricing-section__heading h2 {
    font-size: 20px;
  }

  .pricing-section__heading p {
    margin-left: 0;
  }

  .plans-section__heading h2 {
    font-size: 27px;
  }

  .plans-section__heading > p {
    margin-left: 0;
  }

  .plan-card {
    padding: 27px 22px 25px;
  }

  .plan-card__header {
    gap: 14px;
  }

  .plan-card__price strong {
    font-size: 52px;
  }

  .plan-card__details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .plan-card__details > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-top: 1px solid rgba(75, 121, 190, 0.08);
    border-left: 0;
  }

  .plan-card__details > div:first-child {
    border-top: 0;
  }

  .plan-card__details dt {
    margin: 0;
  }

  .plan-benefits {
    padding: 24px 22px;
  }

  .member-card-section__heading h2 {
    font-size: 27px;
  }

  .member-card-section__heading > p {
    margin-left: 0;
  }

  .member-card-stage {
    padding: 18px 12px 16px;
  }

  .memorial-card {
    width: 97%;
  }

  .member-card-viewport {
    aspect-ratio: 1.22 / 1;
  }

  .member-card-stage__meta span:last-child,
  .member-card-stage__foot span:last-child {
    display: none;
  }

  .member-card-controls {
    width: 100%;
    min-height: 96px;
    gap: 11px;
    margin-top: -15px;
  }

  .member-card-orbit {
    width: 82px;
    height: 82px;
  }

  .member-card-orbit__knob {
    transform: rotate(var(--orbit-angle)) translateY(-33px);
  }

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

  .member-card-controls__copy strong {
    font-size: 11px;
  }

  .member-card-controls__copy span {
    max-width: 105px;
    line-height: 1.4;
  }

  .member-card-reset {
    padding: 6px 8px;
  }

  .member-card-stage__foot {
    margin-top: 2px;
    padding-top: 12px;
  }

  .corporate-transfer-section__heading h2 {
    font-size: 27px;
  }

  .corporate-transfer-section__heading > p {
    margin-left: 0;
  }

  .corporate-account-panel {
    padding: 7px 19px;
    border-radius: 21px;
  }

  .corporate-account-table__account td {
    font-size: 17px;
    letter-spacing: 0.045em;
  }

  .corporate-account-table__account .corporate-account-copy {
    letter-spacing: normal;
  }

}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero .soft-hero__mist {
    animation: none;
    transition-duration: 0.001ms;
  }
}

/* ── Technical reports page ── */
.reports-hero {
  min-height: 1000px;
  background:
    radial-gradient(circle at 12% 24%, rgba(190, 228, 255, 0.56), transparent 28%),
    radial-gradient(circle at 87% 18%, rgba(210, 201, 255, 0.42), transparent 27%),
    radial-gradient(circle at 70% 83%, rgba(188, 232, 255, 0.3), transparent 32%),
    linear-gradient(145deg, #ffffff 3%, #f9fbff 47%, #f4f9ff 100%);
}

.reports-hero::before {
  inset: 7% 6% auto;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 229, 255, 0.4), transparent 69%);
  filter: blur(52px);
  opacity: 0.74;
  animation: none;
}

.reports-hero::after {
  position: absolute;
  z-index: -2;
  inset: 102px 0 auto;
  height: 620px;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 118, 186, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 118, 186, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 36%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 36%, #000 0%, transparent 72%);
}

.reports-hero .soft-hero__mist {
  opacity: 0.2;
  filter: blur(74px);
}

.reports-hero .soft-hero__mist--one {
  bottom: 14%;
  background: rgba(94, 199, 255, 0.5);
}

.reports-hero .soft-hero__mist--two {
  top: 12%;
  background: rgba(145, 132, 247, 0.4);
}

.reports-page {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  padding-bottom: 116px;
}

.reports-page__body {
  min-height: 0;
  margin: 54px 0 0;
}

.reports-intro {
  margin: 0 auto 64px;
  text-align: center;
}

.reports-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #6d8fca;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.28em;
}

.reports-intro__eyebrow::before,
.reports-intro__eyebrow::after {
  width: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(87, 126, 194, 0.48));
}

.reports-intro__eyebrow::after {
  transform: rotate(180deg);
}

.reports-intro h1 {
  margin: 0;
  color: #102e62;
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.reports-intro p {
  margin: 20px 0 0;
  color: #8091ac;
  font-size: 17px;
  letter-spacing: 0.06em;
}

.reports-catalog {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.report-card {
  --report-accent: #4c8cf5;
  position: relative;
  grid-column: span 4;
  min-height: 374px;
  overflow: hidden;
  padding: 30px 30px 28px;
  border: 1px solid rgba(85, 125, 184, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 24px 68px rgba(57, 98, 166, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  backdrop-filter: blur(24px) saturate(120%);
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.report-card:nth-child(n + 4) {
  grid-column: span 6;
}

.report-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--report-accent), transparent 78%);
  opacity: 0.72;
}

.report-card::after {
  position: absolute;
  top: -108px;
  right: -92px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--report-accent) 16%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--report-accent) 8%, transparent), transparent 66%);
}

.report-card:hover {
  border-color: color-mix(in srgb, var(--report-accent) 17%, transparent);
  box-shadow:
    0 30px 78px rgba(57, 98, 166, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
}

.report-card--memory {
  --report-accent: #6b78e8;
}

.report-card--action {
  --report-accent: #378dc8;
}

.report-card--safety {
  --report-accent: #5b76c7;
}

.report-card--emergence {
  --report-accent: #9670cf;
}

.report-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(58, 96, 154, 0.08);
}

.report-card__number {
  color: var(--report-accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.report-card__number::before {
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 9px;
  content: "";
  vertical-align: middle;
  background: currentColor;
  opacity: 0.54;
}

.report-card__type {
  color: #9ba9bd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.report-card__title {
  position: relative;
  z-index: 1;
  min-height: 128px;
  padding: 25px 0 22px;
}

.report-card__title p {
  margin: 0 0 10px;
  color: #7088ad;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.report-card__title h2 {
  margin: 0;
  color: #153568;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.report-card__title span {
  display: block;
  margin-top: 9px;
  color: #8a9ab3;
  font-size: 12px;
  line-height: 1.5;
}

.report-card__scope {
  position: relative;
  z-index: 1;
  padding-top: 22px;
  border-top: 1px solid rgba(58, 96, 154, 0.08);
}

.report-card__scope > p {
  margin: 0 0 15px;
  color: #6c7f9c;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.report-card__scope ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-card__scope li {
  position: relative;
  padding-left: 14px;
  color: #425a7d;
  font-size: 13px;
  line-height: 1.5;
}

.report-card__scope li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--report-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--report-accent) 9%, transparent);
}

@media (max-width: 1040px) {
  .report-card,
  .report-card:nth-child(n + 4) {
    grid-column: span 6;
  }

  .report-card:last-child {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 760px) {
  .reports-hero {
    min-height: auto;
  }

  .reports-page {
    width: min(100% - 34px, 620px);
    padding: 18px 0 74px;
  }

  .reports-page .breadcrumb {
    padding-top: 14px;
  }

  .reports-page__body {
    margin-top: 40px;
  }

  .reports-intro {
    margin-bottom: 46px;
  }

  .reports-intro h1 {
    font-size: 42px;
  }

  .reports-intro p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .reports-catalog {
    display: block;
  }

  .report-card,
  .report-card:nth-child(n + 4),
  .report-card:last-child {
    min-height: 0;
    margin-bottom: 16px;
    padding: 27px 25px 25px;
    border-radius: 23px;
  }

  .report-card:last-child {
    margin-bottom: 0;
  }

  .report-card__title {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .reports-page {
    width: calc(100% - 24px);
  }

  .reports-intro h1 {
    font-size: 38px;
  }

  .reports-intro p {
    max-width: 16em;
    margin-right: auto;
    margin-left: auto;
  }

  .report-card,
  .report-card:nth-child(n + 4),
  .report-card:last-child {
    padding: 25px 21px 23px;
    border-radius: 20px;
  }

  .report-card__title h2 {
    font-size: 23px;
  }

  .report-card__scope ul {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reports-hero .soft-hero__mist {
    animation: none;
  }

  .report-card {
    transition-duration: 0.001ms;
  }
}

/* ── Research direction page ── */
.research-hero {
  min-height: 1060px;
  background:
    radial-gradient(circle at 10% 20%, rgba(181, 229, 255, 0.58), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(205, 199, 255, 0.4), transparent 25%),
    radial-gradient(circle at 76% 76%, rgba(178, 225, 255, 0.3), transparent 31%),
    linear-gradient(145deg, #ffffff 2%, #f8fbff 48%, #f3f8ff 100%);
}

.research-hero::before {
  inset: 2% auto auto 32%;
  width: 760px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 229, 255, 0.4), transparent 70%);
  filter: blur(52px);
  opacity: 0.74;
  animation: none;
}

.research-hero::after {
  position: absolute;
  z-index: -2;
  inset: 92px 0 auto;
  height: 760px;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 118, 186, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 118, 186, 0.03) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 74%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 74%, transparent);
}

.research-hero .soft-hero__mist {
  opacity: 0.19;
  filter: blur(78px);
}

.research-hero .soft-hero__mist--one {
  bottom: 20%;
  background: rgba(86, 197, 255, 0.5);
}

.research-hero .soft-hero__mist--two {
  top: 10%;
  background: rgba(145, 132, 247, 0.4);
}

.research-page {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  padding-bottom: 116px;
}

.research-page__body {
  min-height: 0;
  margin: 54px 0 0;
}

.research-intro {
  position: relative;
  max-width: 1090px;
  margin-bottom: 70px;
  padding: 0 0 0 42px;
}

.research-intro::before {
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, #4289ed, rgba(66, 137, 237, 0.08));
}

.research-intro::after {
  position: absolute;
  top: 3px;
  left: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  content: "";
  background: #438af0;
  box-shadow: 0 0 0 5px rgba(67, 138, 240, 0.1);
}

.research-intro__eyebrow {
  display: block;
  margin-bottom: 24px;
  color: #6b8bc2;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.28em;
}

.research-intro__brand {
  margin: 0 0 14px;
  color: #8192ac;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: 0.08em;
}

.research-intro h1 {
  margin: 0;
  color: #163565;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.research-intro h1 span,
.research-intro h1 strong {
  display: block;
}

.research-intro h1 strong {
  margin-top: 5px;
  color: #0c4ebd;
  font-weight: 680;
}

.research-thesis {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.45fr);
  gap: 54px;
  min-height: 360px;
  overflow: hidden;
  padding: 52px 54px 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 8%, rgba(100, 133, 224, 0.28), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(69, 174, 219, 0.2), transparent 31%),
    linear-gradient(138deg, #102d5a 0%, #0c2550 55%, #162d63 100%);
  box-shadow:
    0 32px 88px rgba(31, 66, 125, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.research-thesis::before {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(137, 188, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 58px rgba(137, 188, 255, 0.035),
    0 0 0 118px rgba(137, 188, 255, 0.025);
}

.research-thesis__signal {
  position: absolute;
  top: 25px;
  right: 28px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
}

.research-thesis__signal span {
  width: 3px;
  border-radius: 999px;
  background: rgba(139, 201, 255, 0.62);
}

.research-thesis__signal span:nth-child(1) {
  height: 6px;
}

.research-thesis__signal span:nth-child(2) {
  height: 11px;
}

.research-thesis__signal span:nth-child(3) {
  height: 15px;
}

.research-thesis__signal span:nth-child(4) {
  height: 9px;
}

.research-thesis__lead,
.research-thesis__shift {
  position: relative;
  z-index: 1;
}

.research-thesis__lead {
  align-self: center;
  padding-right: 28px;
  border-right: 1px solid rgba(162, 195, 240, 0.14);
}

.research-thesis__lead span {
  display: block;
  margin-bottom: 20px;
  color: #8bb9f3;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.research-thesis__lead h2 {
  margin: 0;
  color: #f3f8ff;
  font-size: clamp(29px, 3.2vw, 42px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.research-thesis__shift {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 54px minmax(0, 1.35fr);
  align-items: center;
  gap: 20px;
}

.research-thesis__shift article > span {
  display: block;
  margin-bottom: 16px;
  color: #7fa8df;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.research-thesis__shift article > p {
  margin: 0;
  color: #aebdd2;
  font-size: 15px;
  line-height: 1.8;
}

.research-thesis__shift > i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(129, 178, 240, 0.12), rgba(129, 178, 240, 0.66));
}

.research-thesis__shift > i::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(139, 194, 255, 0.8);
  border-right: 1px solid rgba(139, 194, 255, 0.8);
  content: "";
  transform: rotate(45deg);
}

.research-thesis__future strong {
  display: block;
  margin-top: 13px;
  color: #f3f8ff;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.7;
}

.research-fields {
  margin-top: 82px;
}

.research-fields__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
  padding: 0 5px;
}

.research-fields__heading > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.research-fields__index {
  position: relative;
  padding-right: 28px;
  color: #6f91c7;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.research-fields__index::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 17px;
  height: 1px;
  content: "";
  background: rgba(91, 126, 184, 0.28);
}

.research-fields__heading h2 {
  margin: 0;
  color: #173664;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.research-fields__heading > p {
  margin: 0 0 5px;
  color: #8a9ab3;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.research-field {
  --field-accent: #4a8ff0;
  position: relative;
  min-height: 244px;
  overflow: hidden;
  padding: 27px 28px 25px;
  border: 1px solid rgba(85, 125, 184, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 22px 62px rgba(57, 98, 166, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
  backdrop-filter: blur(22px) saturate(118%);
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.research-field::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--field-accent), transparent);
  opacity: 0.48;
}

.research-field:hover {
  border-color: color-mix(in srgb, var(--field-accent) 17%, transparent);
  box-shadow:
    0 28px 72px rgba(57, 98, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-3px);
}

.research-field--loop {
  --field-accent: #647ce6;
}

.research-field--memory {
  --field-accent: #7b70db;
}

.research-field--world {
  --field-accent: #328fc1;
}

.research-field--safety {
  --field-accent: #4e73bd;
}

.research-field--emergence {
  --field-accent: #9572cd;
}

.research-field__number {
  position: relative;
  z-index: 1;
  color: #8a9bb6;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.research-field__node {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--field-accent) 20%, transparent);
  border-radius: 50%;
}

.research-field__node::before,
.research-field__node::after {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--field-accent) 16%, transparent);
}

.research-field__node::before {
  top: 50%;
  right: -14px;
  left: -14px;
  height: 1px;
}

.research-field__node::after {
  top: -14px;
  bottom: -14px;
  left: 50%;
  width: 1px;
}

.research-field__node i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--field-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--field-accent) 10%, transparent);
  transform: translate(-50%, -50%);
}

.research-field > p {
  position: relative;
  z-index: 1;
  max-width: 16em;
  margin: 88px 0 9px;
  color: #7f91ad;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.research-field h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #173666;
  font-size: 27px;
  font-weight: 630;
  letter-spacing: -0.035em;
}

.research-objective {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  margin-top: 78px;
  padding: 38px 4px 10px;
  border-top: 1px solid rgba(65, 105, 165, 0.12);
}

.research-objective span {
  color: #7891b9;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.2em;
}

.research-objective p {
  margin: 0;
  color: #143464;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .research-thesis {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .research-thesis__lead {
    max-width: 620px;
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(162, 195, 240, 0.14);
  }

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

@media (max-width: 760px) {
  .research-hero {
    min-height: auto;
  }

  .research-page {
    width: min(100% - 34px, 620px);
    padding: 18px 0 74px;
  }

  .research-page .breadcrumb {
    padding-top: 14px;
  }

  .research-page__body {
    margin-top: 42px;
  }

  .research-intro {
    margin-bottom: 48px;
    padding-left: 26px;
  }

  .research-intro__eyebrow {
    margin-bottom: 18px;
  }

  .research-intro h1 {
    font-size: 42px;
  }

  .research-thesis {
    gap: 30px;
    min-height: 0;
    padding: 34px 28px 32px;
    border-radius: 24px;
  }

  .research-thesis__shift {
    display: block;
  }

  .research-thesis__shift > i {
    display: block;
    width: 1px;
    height: 36px;
    margin: 18px 0 18px 5px;
    background: linear-gradient(180deg, rgba(129, 178, 240, 0.12), rgba(129, 178, 240, 0.66));
  }

  .research-thesis__shift > i::after {
    top: auto;
    right: -3px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .research-fields {
    margin-top: 64px;
  }

  .research-fields__heading {
    display: block;
    margin-bottom: 24px;
    padding: 0 2px;
  }

  .research-fields__heading > p {
    margin: 10px 0 0 45px;
  }

  .research-field {
    min-height: 218px;
    padding: 25px 24px 23px;
    border-radius: 21px;
  }

  .research-field__node {
    top: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
  }

  .research-field > p {
    margin-top: 74px;
  }

  .research-objective {
    display: block;
    margin-top: 58px;
    padding-top: 30px;
  }

  .research-objective p {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .research-fields__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .research-page {
    width: calc(100% - 24px);
  }

  .research-intro {
    padding-left: 22px;
  }

  .research-intro h1 {
    font-size: 36px;
  }

  .research-thesis {
    padding: 30px 22px 28px;
    border-radius: 21px;
  }

  .research-thesis__lead h2 {
    font-size: 29px;
  }

  .research-fields__heading > div {
    align-items: flex-start;
  }

  .research-fields__heading h2 {
    font-size: 27px;
  }

  .research-fields__heading > p {
    margin-left: 0;
  }

  .research-field {
    min-height: 205px;
  }

  .research-objective p {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .research-hero .soft-hero__mist {
    animation: none;
  }

  .research-field {
    transition-duration: 0.001ms;
  }
}

/* Research page refinement: centered, restrained content palette */

.research-intro {
  max-width: 1040px;
  margin: 0 auto 68px;
  padding: 0;
  text-align: center;
}

.research-intro::before,
.research-intro::after {
  display: none;
}

.research-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #6d8fca;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.research-intro__eyebrow::before,
.research-intro__eyebrow::after {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(126, 108, 130, 0.42));
}

.research-intro__eyebrow::after {
  transform: rotate(180deg);
}

.research-intro h1 {
  color: #102e62;
  font-size: clamp(48px, 5.1vw, 64px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.research-intro h1 span {
  color: #8091ac;
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.research-intro h1 strong {
  margin-top: 13px;
  color: #102e62;
  font-weight: 650;
}

.research-thesis {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
  gap: 48px;
  min-height: 318px;
  padding: 48px 52px;
  border: 1px solid rgba(101, 86, 105, 0.08);
  background:
    radial-gradient(circle at 88% 12%, rgba(226, 215, 228, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 28px 76px rgba(73, 60, 78, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(24px) saturate(108%);
  backdrop-filter: blur(24px) saturate(108%);
}

.research-thesis::before {
  right: -150px;
  bottom: -260px;
  border-color: rgba(131, 111, 135, 0.08);
  box-shadow:
    0 0 0 58px rgba(131, 111, 135, 0.022),
    0 0 0 118px rgba(131, 111, 135, 0.015);
}

.research-thesis__lead {
  padding-right: 42px;
  border-right-color: rgba(104, 89, 108, 0.1);
}

.research-thesis__lead span,
.research-thesis__shift article > span {
  color: #6d8fca;
}

.research-thesis__lead h2 {
  color: #153568;
  font-size: clamp(29px, 3vw, 39px);
  font-weight: 610;
}

.research-thesis__shift article > p {
  color: #8091ac;
}

.research-thesis__shift > i {
  background: linear-gradient(90deg, rgba(133, 116, 138, 0.1), rgba(133, 116, 138, 0.56));
}

.research-thesis__shift > i::after {
  border-color: rgba(133, 116, 138, 0.7);
}

.research-thesis__future strong {
  color: #29456e;
  font-size: 18px;
  font-weight: 590;
}

.research-fields {
  margin-top: 76px;
}

.research-fields__heading {
  display: block;
  margin: 0 auto 34px;
  text-align: center;
}

.research-fields__heading > div {
  display: block;
}

.research-fields__index {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  padding: 0;
  color: #6f91c7;
}

.research-fields__index::before,
.research-fields__index::after {
  position: static;
  display: block;
  width: 20px;
  height: 1px;
  content: "";
  background: rgba(131, 112, 135, 0.3);
}

.research-fields__heading h2 {
  color: #173664;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 630;
}

.research-fields__heading > p {
  margin: 12px 0 0;
  color: #8a9ab3;
}

.research-fields__grid {
  gap: 20px;
}

.research-field,
.research-field--autonomy,
.research-field--loop,
.research-field--memory,
.research-field--world,
.research-field--safety,
.research-field--emergence {
  --field-accent: #98869b;
}

.research-field {
  min-height: 226px;
  padding: 27px 28px 25px;
  border-color: rgba(102, 87, 106, 0.07);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 62px rgba(73, 60, 78, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.research-field:hover {
  border-color: rgba(138, 118, 143, 0.16);
  box-shadow:
    0 27px 68px rgba(73, 60, 78, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.research-field__number {
  color: #8a9bb6;
}

.research-field__node {
  border-color: rgba(143, 123, 147, 0.17);
}

.research-field__node::before,
.research-field__node::after {
  background: rgba(143, 123, 147, 0.14);
}

.research-field > p {
  margin-top: 75px;
  color: #7f91ad;
}

.research-field h3 {
  color: #173666;
  font-size: 26px;
}

.research-objective {
  display: block;
  max-width: 920px;
  margin: 74px auto 0;
  padding: 38px 0 12px;
  border-top-color: rgba(103, 88, 107, 0.1);
  text-align: center;
}

.research-objective span {
  color: #7891b9;
}

.research-objective p {
  margin-top: 18px;
  color: #143464;
  font-size: clamp(32px, 4vw, 48px);
}

@media (max-width: 980px) {
  .research-thesis {
    grid-template-columns: 1fr;
  }

  .research-thesis__lead {
    max-width: none;
    padding-right: 0;
    border-right: 0;
    border-bottom-color: rgba(104, 89, 108, 0.1);
    text-align: center;
  }
}

@media (max-width: 760px) {
  .research-intro {
    padding: 0;
  }

  .research-intro h1 {
    font-size: 43px;
  }

  .research-intro h1 span {
    font-size: 0.66em;
    line-height: 1.45;
  }

  .research-thesis {
    padding: 34px 28px 32px;
  }

  .research-fields__heading > p {
    margin-left: 0;
  }

  .research-objective {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .research-intro h1 {
    font-size: 36px;
  }

  .research-thesis {
    padding: 30px 22px 28px;
  }
}

/* Research page section order and report-aligned masthead */
.research-page__body > .research-fields {
  margin-top: 0;
}

.research-page-intro {
  margin-bottom: 64px;
}

.research-statement {
  margin-top: 88px;
}

.research-statement__intro {
  max-width: 1040px;
  margin: 0 auto 46px;
  text-align: center;
}

.research-statement__intro > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #6d8fca;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.research-statement__intro > span::before,
.research-statement__intro > span::after {
  width: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(87, 126, 194, 0.48));
}

.research-statement__intro > span::after {
  transform: rotate(180deg);
}

.research-statement__intro h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

.research-statement__intro small,
.research-statement__intro strong {
  display: block;
}

.research-statement__intro small {
  color: #8091ac;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 520;
}

.research-statement__intro strong {
  margin-top: 8px;
  color: #102e62;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 650;
}

@media (max-width: 760px) {
  .research-page-intro {
    margin-bottom: 46px;
  }

  .research-statement {
    margin-top: 68px;
  }

  .research-statement__intro {
    margin-bottom: 34px;
  }
}

@media (max-width: 460px) {
  .research-statement__intro small {
    font-size: 22px;
  }

  .research-statement__intro strong {
    font-size: 36px;
  }
}

/* ── About page: editorial layout without cards ── */
.about-hero {
  min-height: 980px;
}

.about-page {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  padding-bottom: 118px;
}

.about-page__body {
  min-height: 0;
  margin: 54px 0 0;
}

.about-intro {
  margin-bottom: 88px;
}

.about-intro p {
  letter-spacing: 0.04em;
}

.about-evolution,
.about-mission,
.about-context,
.about-principles,
.about-closing {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.about-evolution,
.about-mission,
.about-context,
.about-principles {
  padding-top: 34px;
  border-top: 1px solid rgba(70, 108, 166, 0.11);
}

.about-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.about-section-heading > span {
  position: relative;
  padding-right: 29px;
  color: #6f91c7;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.18em;
}

.about-section-heading > span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 1px;
  content: "";
  background: rgba(91, 126, 184, 0.3);
}

.about-section-heading > p {
  margin: 0;
  color: #8293ad;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.16em;
}

.about-evolution {
  text-align: center;
}

.about-evolution .about-section-heading {
  justify-content: center;
}

.about-evolution h2 {
  margin: 0;
  color: #153568;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.about-evolution__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 55px auto 0;
  color: #425a7d;
  font-size: 15px;
  line-height: 1.6;
}

.about-evolution__steps span {
  flex: 0 1 auto;
}

.about-evolution__steps i {
  position: relative;
  width: clamp(34px, 5vw, 64px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, rgba(83, 127, 194, 0.12), rgba(83, 127, 194, 0.48));
}

.about-evolution__steps i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(83, 127, 194, 0.56);
  border-right: 1px solid rgba(83, 127, 194, 0.56);
  content: "";
  transform: rotate(45deg);
}

.about-evolution__closing {
  margin: 34px 0 0;
  color: #8a9ab3;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.about-mission {
  margin-top: 94px;
}

.about-mission__layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.about-mission__layout > p {
  margin: 8px 0 0;
  color: #8091ac;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.about-mission__layout h2 {
  margin: 0;
  color: #102e62;
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.about-context {
  margin-top: 100px;
}

.about-context__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
}

.about-context__layout h2 {
  margin: 0;
  color: #153568;
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.about-context__layout > div {
  padding-top: 3px;
}

.about-context__layout p {
  margin: 0;
  color: #526987;
  font-size: 17px;
  line-height: 1.95;
}

.about-context__layout p + p {
  margin-top: 20px;
}

.about-belief {
  position: relative;
  width: min(1180px, 100%);
  margin: 118px auto 0;
  padding: 68px 34px 72px;
  border-top: 1px solid rgba(70, 108, 166, 0.11);
  border-bottom: 1px solid rgba(70, 108, 166, 0.11);
  text-align: center;
}

.about-belief > span {
  display: block;
  color: #6d8fca;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.22em;
}

.about-belief > p {
  margin: 27px 0 0;
  color: #8091ac;
  font-size: 14px;
}

.about-belief h2 {
  max-width: 940px;
  margin: 14px auto 0;
  color: #102e62;
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.about-principles {
  margin-top: 104px;
}

.about-principles__heading {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 42px;
}

.about-principles__heading > span {
  color: #6f91c7;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.18em;
}

.about-principles__heading h2 {
  margin: 0;
  color: #153568;
  font-size: clamp(31px, 3.2vw, 42px);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.about-principles ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-principles li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  min-height: 104px;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(70, 108, 166, 0.11);
}

.about-principles li > span {
  color: #91a0b6;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.about-principles li > strong {
  color: #29456e;
  font-size: 20px;
  font-weight: 590;
  line-height: 1.55;
}

.about-closing {
  margin-top: 102px;
  padding-top: 48px;
  border-top: 1px solid rgba(70, 108, 166, 0.11);
  text-align: center;
}

.about-closing > span {
  color: #8091ac;
  font-size: 14px;
}

.about-closing > p {
  margin: 18px 0 0;
  color: #102e62;
  font-size: clamp(36px, 4.7vw, 58px);
  font-weight: 640;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
  }

  .about-page {
    width: min(100% - 34px, 620px);
    padding: 18px 0 76px;
  }

  .about-page .breadcrumb {
    padding-top: 14px;
  }

  .about-page__body {
    margin-top: 40px;
  }

  .about-intro {
    margin-bottom: 64px;
  }

  .about-evolution,
  .about-mission,
  .about-context,
  .about-principles {
    padding-top: 28px;
  }

  .about-evolution__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-evolution__steps i {
    width: 1px;
    height: 26px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(83, 127, 194, 0.12), rgba(83, 127, 194, 0.48));
  }

  .about-evolution__steps i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .about-mission,
  .about-context,
  .about-principles,
  .about-closing {
    margin-top: 72px;
  }

  .about-mission__layout,
  .about-context__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-mission__layout > p {
    margin: 0;
  }

  .about-belief {
    margin-top: 82px;
    padding: 54px 6px 58px;
  }

  .about-principles ol {
    grid-template-columns: 1fr;
  }

  .about-principles li {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .about-page {
    width: calc(100% - 24px);
  }

  .about-intro h1 {
    font-size: 38px;
  }

  .about-intro p {
    max-width: 18em;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.7;
  }

  .about-section-heading {
    gap: 10px;
  }

  .about-section-heading > p {
    letter-spacing: 0.1em;
  }

  .about-mission__layout h2 {
    font-size: 32px;
  }

  .about-belief h2 {
    font-size: 40px;
  }

  .about-principles li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .about-closing > p {
    font-size: 36px;
  }
}

/* Mobile reading rhythm refinement
   Keep the spacious landing-page composition, while giving dense article,
   pricing and catalogue content more breathing room on touch screens. */
@media (max-width: 760px) {
  /* Shared content pages */
  .content-page {
    padding-bottom: 92px;
  }

  .content-page__body {
    margin-bottom: 58px;
  }

  /* Home: the sections are already spacious; only relax compact card copy. */
  .mind-stage {
    min-height: 116px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mind-stage small {
    margin-top: 8px;
    line-height: 1.65;
  }

  .trust-principle {
    padding-top: 29px;
    padding-bottom: 30px;
  }

  .trust-principle p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.75;
  }

  .capability-row {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  /* Privacy and terms: improve long-form reading cadence. */
  .legal-page .content-page__body {
    margin-top: 42px;
  }

  .legal-page .content-page__heading {
    margin-bottom: 38px;
    line-height: 1.85;
  }

  .legal-page .content-page__text {
    line-height: 2;
  }

  .legal-page .content-page__text p {
    margin-bottom: 1.35em;
  }

  .legal-page .content-page__text h2 {
    margin-top: 2.45em;
    margin-bottom: 0.9em;
    line-height: 1.58;
  }

  .legal-page .content-page__text h3 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.65;
  }

  .legal-page .content-page__text ul,
  .legal-page .content-page__text ol {
    margin-bottom: 1.65em;
    line-height: 2;
  }

  .legal-page .content-page__text li + li {
    margin-top: 0.65em;
  }

  /* Jobs: maintain the hero composition and separate copy from the artwork. */
  .jobs-hero__status {
    margin-top: 20px;
    line-height: 1.65;
  }

  .jobs-hero__description {
    margin-top: 19px;
    line-height: 1.9;
  }

  .jobs-hero__notice {
    margin-top: 29px;
    padding-top: 26px;
  }

  .jobs-hero__notice p {
    line-height: 1.75;
  }

  .jobs-hero__art {
    margin-top: 22px;
  }

  .jobs-values {
    gap: 18px 0;
    padding-top: 24px;
  }

  /* Products */
  .product-layout,
  .product-grid {
    gap: 40px;
  }

  .product-card {
    padding: 34px 27px 32px;
  }

  .product-card__title-row {
    margin-bottom: 30px;
  }

  .product-card__info p {
    margin-top: 15px;
    line-height: 1.85;
  }

  .product-card__footer {
    margin-top: 34px;
  }

  /* Changelog */
  .changelog__intro {
    margin-bottom: 45px;
  }

  .changelog__intro > p:last-child {
    margin-top: 18px;
    line-height: 1.8;
  }

  .changelog__item {
    padding-bottom: 36px;
  }

  .changelog__card {
    padding: 27px 22px 28px;
  }

  .changelog__card h3 {
    margin-top: 18px;
    margin-bottom: 11px;
    line-height: 1.45;
  }

  .changelog__card p {
    line-height: 1.9;
  }

  .changelog__tags {
    gap: 10px 8px;
    margin-top: 24px;
  }

  /* Pricing: the overall section gaps were good; relax dense inner content. */
  .pricing-page,
  .reports-page,
  .research-page,
  .about-page {
    padding-bottom: 92px;
  }

  .pricing-page__body,
  .reports-page__body,
  .research-page__body,
  .about-page__body {
    margin-top: 46px;
  }

  .pricing-intro,
  .reports-intro {
    margin-bottom: 54px;
  }

  .pricing-intro p,
  .reports-intro p {
    margin-top: 18px;
    line-height: 1.8;
  }

  .pricing-section {
    padding: 27px 23px 29px;
  }

  .pricing-section__heading {
    padding-bottom: 28px;
  }

  .pricing-section__heading p,
  .plans-section__heading > p,
  .member-card-section__heading > p,
  .corporate-transfer-section__heading > p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.7;
  }

  .reasoning-table tbody,
  .table-rate__items {
    gap: 16px;
  }

  .table-rate__item,
  .table-rate__item + .table-rate__item {
    min-height: 154px;
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .plans-section,
  .member-card-section,
  .corporate-transfer-section {
    margin-top: 76px;
  }

  .plans-section__heading,
  .member-card-section__heading,
  .corporate-transfer-section__heading {
    margin-bottom: 30px;
  }

  .plans-grid {
    gap: 22px;
  }

  .plan-card {
    padding-top: 34px;
    padding-bottom: 33px;
  }

  .plan-card__price {
    margin-top: 43px;
  }

  .plan-card__details {
    margin-top: 39px;
  }

  .plan-benefits {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .plan-benefit {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .plan-benefit p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.7;
  }

  .member-card-features li {
    padding-top: 22px;
    padding-bottom: 22px;
    line-height: 1.75;
  }

  .corporate-account-table tr {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  /* Reports */
  .reports-catalog {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .report-card,
  .report-card:nth-child(n + 4),
  .report-card:last-child {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding: 31px 25px 30px;
  }

  .report-card__header {
    padding-bottom: 28px;
  }

  .report-card__title {
    padding-top: 29px;
    padding-bottom: 27px;
  }

  .report-card__title p,
  .report-card__scope > p {
    font-size: 12px;
    line-height: 1.65;
  }

  .report-card__title p {
    margin-bottom: 13px;
  }

  .report-card__title span {
    margin-top: 12px;
    line-height: 1.7;
  }

  .report-card__scope {
    padding-top: 26px;
  }

  .report-card__scope > p {
    margin-bottom: 20px;
  }

  .report-card__scope ul {
    gap: 14px 18px;
  }

  .report-card__scope li {
    line-height: 1.75;
  }

  /* Research */
  .research-page-intro {
    margin-bottom: 56px;
  }

  .research-fields__heading {
    margin-bottom: 31px;
  }

  .research-fields__heading > p {
    margin-top: 15px;
    line-height: 1.75;
  }

  .research-fields__grid {
    gap: 27px;
  }

  .research-field {
    min-height: 232px;
    padding: 30px 25px 29px;
  }

  .research-field > p {
    line-height: 1.65;
  }

  .research-objective {
    margin-top: 70px;
    padding-top: 36px;
  }

  .research-statement {
    margin-top: 80px;
  }

  .research-statement__intro {
    margin-bottom: 42px;
  }

  /* About */
  .about-article-header {
    margin-bottom: 54px;
  }

  .about-article-header p {
    margin-top: 22px;
    line-height: 1.9;
  }

  .about-article-copy {
    padding-top: 40px;
    line-height: 2.05;
  }

  .about-article-copy p {
    margin-bottom: 25px;
  }

  .about-article-copy blockquote {
    margin-top: 36px;
    margin-bottom: 40px;
    line-height: 1.9;
  }

  .about-article-copy ul {
    margin-top: 12px;
    margin-bottom: 40px;
  }

  .about-article-copy li {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .about-article-copy hr {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 460px) {
  .pricing-section {
    padding: 21px 18px 24px;
  }

  .plan-card {
    padding: 31px 22px 30px;
  }

  .plan-benefits {
    padding: 29px 22px;
  }

  .report-card,
  .report-card:nth-child(n + 4),
  .report-card:last-child {
    padding: 29px 22px 28px;
  }
}

/* About page refinement: simple article reading layout */
.about-page {
  width: min(1120px, calc(100% - 48px));
}

.about-page__body {
  margin-top: 52px;
}

.about-article-header {
  width: min(760px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.about-article-header > span {
  display: block;
  margin-bottom: 16px;
  color: #6d8fca;
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.22em;
}

.about-article-header h1 {
  margin: 0;
  color: #102e62;
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.about-article-header p {
  margin: 18px 0 0;
  color: #8091ac;
  font-size: 16px;
  line-height: 1.8;
}

.about-article-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-top: 42px;
  border-top: 1px solid rgba(70, 108, 166, 0.11);
  color: #425a7d;
  font-size: 17px;
  line-height: 2;
}

.about-article-copy p {
  margin: 0 0 20px;
}

.about-article-copy blockquote {
  margin: 30px 0 34px;
  padding: 3px 0 3px 24px;
  border-left: 2px solid rgba(47, 124, 255, 0.42);
  color: #153568;
  font-size: 20px;
  font-weight: 590;
  line-height: 1.8;
}

.about-article-copy ul {
  margin: 8px 0 34px;
  padding: 0;
  list-style: none;
}

.about-article-copy li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(70, 108, 166, 0.08);
}

.about-article-copy li::before {
  position: absolute;
  top: 1.25em;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #6f91c7;
}

.about-article-copy hr {
  width: 54px;
  margin: 42px 0;
  border: 0;
  border-top: 1px solid rgba(70, 108, 166, 0.24);
}

.about-article-copy > :last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .about-page {
    width: min(100% - 34px, 620px);
  }

  .about-page__body {
    margin-top: 40px;
  }

  .about-article-header {
    margin-bottom: 46px;
  }

  .about-article-copy {
    padding-top: 34px;
    font-size: 16px;
    line-height: 1.95;
  }
}

@media (max-width: 460px) {
  .about-page {
    width: calc(100% - 24px);
  }

  .about-article-header h1 {
    font-size: 38px;
  }

  .about-article-header p {
    font-size: 15px;
  }

  .about-article-copy blockquote {
    padding-left: 18px;
    font-size: 18px;
  }
}

/* Keep the final about-page refinement aligned with the shared mobile rhythm. */
@media (max-width: 760px) {
  .about-page {
    padding-bottom: 92px;
  }

  .about-page__body {
    margin-top: 46px;
  }

  .about-article-header {
    margin-bottom: 54px;
  }

  .about-article-header p {
    margin-top: 22px;
    line-height: 1.9;
  }

  .about-article-copy {
    padding-top: 40px;
    line-height: 2.05;
  }

  .about-article-copy p {
    margin-bottom: 25px;
  }

  .about-article-copy blockquote {
    margin-top: 36px;
    margin-bottom: 40px;
    line-height: 1.9;
  }

  .about-article-copy ul {
    margin-top: 12px;
    margin-bottom: 40px;
  }

  .about-article-copy li {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .about-article-copy hr {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
