:root {
  --ink: #080a0c;
  --charcoal: #3f3e41;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #288fcf;
  --yellow: #fdd000;
  --muted: #717980;
  --line: rgba(8, 10, 12, 0.14);
  --line-soft: rgba(8, 10, 12, 0.07);
  --page: min(92vw, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ink) var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

html.intro-active,
html.intro-active body {
  overflow: hidden;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 66px;
  padding: 8px 9px 8px 20px;
  transform: translate3d(-50%, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(247, 249, 251, 0.78);
  color: var(--ink);
  box-shadow: 0 18px 56px rgba(15, 28, 36, 0.09);
  opacity: 0;
  isolation: isolate;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: opacity 700ms ease 120ms;
}

.intro-done .site-header,
.no-js .site-header {
  opacity: 1;
}

.brand {
  display: grid;
  align-items: center;
  height: 46px;
}

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 423 / 265;
}

.logo-crop img {
  position: absolute;
  top: -27.17%;
  left: -26.71%;
  width: 152.48%;
  max-width: none;
  height: auto;
}

.logo-crop--header {
  width: 82px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  position: relative;
  padding: 15px 22px;
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateZ(0);
}

.site-nav a::after {
  position: absolute;
  right: 22px;
  bottom: 10px;
  left: 22px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 250ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:last-child {
  background: var(--white);
  color: var(--ink);
}

.site-nav span {
  margin-right: 8px;
  color: var(--yellow);
  font-size: 8px;
}

.site-nav a:first-child span {
  color: var(--blue);
}

.opening {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  isolation: isolate;
  transition: opacity 650ms ease, visibility 0s linear 650ms;
}

.js .opening {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.js .opening.is-leaving {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.js .opening.is-leaving.is-skipping {
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.opening::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(115deg, rgba(40, 143, 207, 0.035), transparent 42% 58%, rgba(253, 208, 0, 0.025));
  content: "";
}

.opening__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 76%);
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.opening__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--page);
  margin: 0 auto;
  padding: 140px 0 120px;
  text-align: center;
}

.opening__symbol {
  width: clamp(72px, 7.5vw, 112px);
  margin-bottom: clamp(42px, 6vh, 72px);
}

.symbol-crop,
.wordmark-crop {
  position: relative;
  display: block;
  overflow: hidden;
}

.symbol-crop {
  width: 100%;
  aspect-ratio: 279 / 165;
  transform-origin: 50% 100%;
}

.symbol-crop img {
  position: absolute;
  top: -43.64%;
  left: -62.366%;
  width: 231.183%;
  max-width: none;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.wordmark-crop {
  width: clamp(168px, 19vw, 305px);
  aspect-ratio: 423 / 66;
}

.wordmark-crop img {
  position: absolute;
  top: -410.606%;
  left: -26.714%;
  width: 152.482%;
  max-width: none;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.opening__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.23em;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 4.15vw, 67px);
  font-weight: 300;
  letter-spacing: 0.055em;
  line-height: 1.05;
  white-space: nowrap;
}

.opening__wordmark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  align-self: center;
}

.opening__dot {
  color: var(--yellow);
}

.opening__ja {
  margin: 22px 0 0;
  font-size: clamp(14px, 1.4vw, 21px);
  font-weight: 400;
  letter-spacing: 0.3em;
}

.opening__meta {
  position: absolute;
  right: 4vw;
  bottom: 34px;
  left: 4vw;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.44);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.opening__shapes {
  position: absolute;
  right: -8vw;
  bottom: -21vw;
  z-index: 1;
  width: min(56vw, 820px);
  aspect-ratio: 1.5;
  transform: rotate(-45deg);
  opacity: 0.95;
}

.opening__shapes i {
  position: absolute;
  bottom: 0;
  width: 13%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
}

.opening__shapes i:nth-child(1) {
  left: 15%;
}

.opening__shapes i:nth-child(2) {
  left: 43%;
}

.opening__shapes i:nth-child(3) {
  left: 71%;
}

.js .opening-step {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .opening__symbol {
  transform: translateY(18px) scale(0.94);
  transition-delay: 50ms;
}

.js .opening__title {
  transition-delay: 240ms;
}

.js .opening__ja {
  transition-delay: 460ms;
}

.js .opening__meta {
  transition-delay: 650ms;
}

.intro-visible .opening-step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-visible .opening__wordmark .wordmark-crop {
  transform-origin: 50% 72%;
  animation: opening-logo-bounce 680ms cubic-bezier(0.2, 0.72, 0.24, 1) 300ms both;
  will-change: transform;
}

@keyframes opening-logo-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  24% {
    transform: translate3d(0, -7px, 0) scale(1.012);
  }

  40% {
    transform: translate3d(0, 0, 0) scale(0.994);
  }

  57% {
    transform: translate3d(0, -3px, 0) scale(1.006);
  }

  72% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.js main {
  opacity: 0.35;
  transform: scale(0.992);
  filter: blur(10px);
}

.intro-done main {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 850ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 850ms ease;
}

.identity {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--paper);
  --video-scroll-distance: 340vh;
  --video-progress: 0;
  --video-frame-scale: 1;
  --last-frame-opacity: 0;
}

.identity__sticky {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 126px 4vw 62px;
  overflow: hidden;
  overflow: clip;
  background: var(--paper);
  isolation: isolate;
}

.identity.has-scroll-video {
  height: calc(100vh + var(--video-scroll-distance));
}

@supports (height: 100svh) {
  .identity {
    --video-scroll-distance: 340svh;
  }

  .identity.has-scroll-video {
    height: calc(100svh + var(--video-scroll-distance));
  }
}

.identity.has-scroll-video .identity__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--white);
}

.light-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, black 8%, transparent 93%);
  mask-image: linear-gradient(to bottom, black 8%, transparent 93%);
}

.identity__sticky::after {
  position: absolute;
  top: -26vw;
  right: -18vw;
  z-index: -2;
  width: 70vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 143, 207, 0.14), transparent 67%);
  content: "";
}

.identity__word {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  color: transparent;
  font-size: clamp(150px, 25vw, 420px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(8, 10, 12, 0.065);
}

.identity__meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.identity__meta span:last-child {
  justify-self: end;
}

.identity__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--white);
}

.identity__video,
.identity__sequence-frame,
.identity__last-frame,
.identity__logo {
  position: absolute;
  inset: 0;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}

.identity__logo {
  display: grid;
  place-items: center;
  width: 100%;
  opacity: 1;
  transition: opacity 360ms ease;
}

.identity__video {
  z-index: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0) scale(var(--video-frame-scale));
  transform-origin: center;
  transition: opacity 360ms ease, visibility 0s linear 360ms;
  will-change: transform, opacity;
  -webkit-touch-callout: none;
}

.identity__sequence-frame {
  z-index: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0) scale(var(--video-frame-scale));
  transform-origin: center;
  will-change: transform;
}

.identity__last-frame {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0) scale(var(--video-frame-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.identity__video::-webkit-media-controls {
  display: none !important;
}

.identity.has-scroll-video.is-video-ready .identity__video {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.identity.uses-image-sequence .identity__video {
  display: none;
}

.identity.uses-image-sequence .identity__sequence-frame {
  display: block;
  visibility: visible;
}

.identity.uses-image-sequence.is-video-ready .identity__sequence-frame {
  opacity: 1;
}

.identity.has-scroll-video.is-video-ready.is-last-frame-ready .identity__last-frame {
  opacity: var(--last-frame-opacity);
  visibility: visible;
}

.identity.has-scroll-video.is-video-ready .identity__logo {
  opacity: 0;
}

.identity__meta,
.identity__bottom,
.identity__accent,
.light-grid,
.identity__word,
.identity__sticky::after {
  transition: opacity 320ms ease;
}

.identity.has-scroll-video .identity__meta,
.identity.has-scroll-video .identity__bottom {
  display: none;
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none;
}

.identity.has-scroll-video.is-video-ready .identity__accent,
.identity.has-scroll-video.is-video-ready .light-grid,
.identity.has-scroll-video.is-video-ready .identity__word,
.identity.has-scroll-video.is-video-ready .identity__sticky::after {
  opacity: 0;
  pointer-events: none;
}

.identity__scroll-cue {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.76);
  color: var(--white);
  box-shadow: 0 9px 28px rgba(8, 10, 12, 0.14);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 480ms ease 280ms, transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 280ms;
}

.identity__scroll-cue span {
  padding-left: 0.28em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.identity__scroll-cue i {
  position: relative;
  display: block;
  width: 2px;
  height: 18px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.identity__scroll-cue i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  transform: translateY(-9px);
  border-radius: inherit;
  background: linear-gradient(to bottom, var(--blue) 0 48%, var(--yellow) 48% 100%);
  content: "";
  animation: scroll-cue-flow 1.7s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.intro-done .identity__scroll-cue,
.no-js .identity__scroll-cue {
  transform: translate(-50%, 0);
  opacity: 1;
}

.identity.has-started-scroll .identity__scroll-cue {
  transform: translate(-50%, -8px);
  opacity: 0;
  transition-delay: 0ms;
}

@keyframes scroll-cue-flow {
  0% {
    opacity: 0;
    transform: translateY(-9px);
  }

  24%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.logo-crop--main {
  width: clamp(280px, 38vw, 540px);
  filter: drop-shadow(0 28px 42px rgba(8, 10, 12, 0.08));
}

.identity__accent {
  position: absolute;
  width: clamp(74px, 9vw, 140px);
  height: 10px;
  transform: rotate(-45deg);
}

.identity__accent--blue {
  top: 27%;
  left: 10%;
  background: var(--blue);
}

.identity__accent--yellow {
  right: 11%;
  bottom: 31%;
  background: var(--yellow);
}

.identity__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.identity__bottom p {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.identity__bottom p:last-child {
  justify-self: end;
}

.identity__bottom h2 {
  margin: 0 28px;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.045em;
}

.section {
  width: var(--page);
  margin: 0 auto;
}

.services {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 14vw, 210px) 0;
  background: var(--paper);
  isolation: isolate;
}

.services::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--paper);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--blue);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 106px);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.section-heading > div > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  transition: color 400ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  color: var(--white);
}

.service-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: auto 0 14px;
  font-size: clamp(27px, 2.7vw, 42px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.service-card__mark {
  position: absolute;
  right: -26px;
  bottom: -42px;
  width: 98px;
  height: 180px;
  transform: rotate(45deg);
  border: 1px solid var(--line);
  transition: border-color 400ms ease, background 400ms ease;
}

.service-card:nth-child(1) .service-card__mark,
.service-card:nth-child(3) .service-card__mark {
  background: rgba(40, 143, 207, 0.08);
}

.service-card:nth-child(2) .service-card__mark,
.service-card:nth-child(4) .service-card__mark {
  background: rgba(253, 208, 0, 0.1);
}

.service-card:hover .service-card__mark {
  border-color: rgba(255, 255, 255, 0.22);
}

.service-card:nth-child(1):hover .service-card__mark,
.service-card:nth-child(3):hover .service-card__mark {
  background: var(--blue);
}

.service-card:nth-child(2):hover .service-card__mark,
.service-card:nth-child(4):hover .service-card__mark {
  background: var(--yellow);
}

/* Galaxy flight ---------------------------------------------------------- */

.galaxy {
  padding: clamp(120px, 14vw, 210px) 0;
}

.galaxy__space,
.galaxy__hud,
.galaxy__cue,
.galaxy__entry,
.galaxy__exit {
  display: none;
}

.galaxy__chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.galaxy-chapter {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.galaxy-chapter__copy {
  position: relative;
}

.galaxy-chapter--lead {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0 0 clamp(72px, 9vw, 130px);
  border: 0;
}

.galaxy-chapter--lead h2 {
  margin: 42px 0 0;
  font-size: clamp(52px, 7vw, 106px);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.galaxy-chapter--lead .galaxy-chapter__copy > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.mobile-line-break {
  display: none;
}

.galaxy-chapter__index {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.galaxy-chapter__index span {
  color: var(--blue);
}

.galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro) h3 {
  margin: 140px 0 14px;
  font-size: clamp(31px, 3.2vw, 50px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro)
  .galaxy-chapter__copy
  > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.galaxy-chapter--outro {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  min-height: 220px;
  background: var(--ink);
  color: var(--white);
  font-size: clamp(22px, 3.2vw, 48px);
  letter-spacing: 0.04em;
}

.galaxy-chapter--outro > p,
.galaxy-chapter--outro > strong,
.galaxy-chapter--outro > small {
  margin: 0;
}

.galaxy-chapter--outro > small {
  margin-left: 2em;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.galaxy-explore-trigger,
.galaxy-explorer {
  display: none;
}

.galaxy-outro__wordmark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  align-self: center;
  line-height: 1;
}

.galaxy-chapter--outro .wordmark-crop img {
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.92))
    drop-shadow(0 0 24px rgba(0, 0, 0, 0.78));
}

.galaxy.is-enhanced {
  --galaxy-scroll-distance: 520vh;
  --galaxy-entry-opacity: 1;
  --galaxy-exit-opacity: 0;
  --galaxy-cue-opacity: 1;
  --galaxy-ui-opacity: 1;
  position: relative;
  width: 100vw;
  height: calc(100vh + var(--galaxy-scroll-distance));
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0;
  background: #01040b;
  color: var(--white);
  isolation: isolate;
}

@supports (height: 100svh) {
  .galaxy.is-enhanced {
    --galaxy-scroll-distance: 520svh;
    height: calc(100svh + var(--galaxy-scroll-distance));
  }
}

.galaxy.is-enhanced .galaxy__sticky {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
  background: var(--paper);
  isolation: isolate;
  contain: paint;
}

.galaxy.is-enhanced .galaxy__space {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 30%, rgba(40, 143, 207, 0.2), transparent 38%),
    radial-gradient(ellipse at 82% 68%, rgba(253, 208, 0, 0.07), transparent 34%),
    #01040b;
}

.galaxy__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: #01040b;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity 700ms ease;
  -webkit-touch-callout: none;
}

.galaxy.is-ready .galaxy__canvas {
  opacity: 1;
}

.galaxy.is-fallback .galaxy__canvas {
  display: none;
}

.galaxy__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.35px),
    radial-gradient(circle, rgba(40, 143, 207, 0.65) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 0.8px, transparent 1.2px);
  background-position: 0 0, 31px 57px, 79px 18px;
  background-size: 113px 131px, 173px 157px, 97px 149px;
  opacity: 0.62;
  transition: opacity 700ms ease;
}

.galaxy.is-ready .galaxy__fallback {
  opacity: 0;
}

.galaxy__fallback i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 130vw;
  height: 14vw;
  transform: translate(-50%, -50%) rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(40, 143, 207, 0.26), transparent);
  filter: blur(32px);
}

.galaxy__fallback i:nth-child(2) {
  width: 86vw;
  height: 9vw;
  transform: translate(-45%, -30%) rotate(27deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.galaxy__fallback i:nth-child(3) {
  width: 64vw;
  height: 6vw;
  transform: translate(-65%, 70%) rotate(-42deg);
  background: linear-gradient(90deg, transparent, rgba(253, 208, 0, 0.12), transparent);
}

.galaxy.is-enhanced .galaxy__chapters {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  border: 0;
  pointer-events: none;
}

.galaxy.is-enhanced .galaxy-chapter {
  position: absolute;
  top: 52%;
  left: 7vw;
  width: min(72vw, 920px);
  min-height: 0;
  padding: 0;
  overflow: visible;
  transform: translate3d(0, var(--chapter-shift, 34px), 0);
  border: 0;
  background: transparent;
  color: var(--white);
  opacity: var(--chapter-opacity, 0);
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.92),
    0 0 30px rgba(0, 0, 0, 0.88),
    0 0 72px rgba(0, 0, 0, 0.68);
  isolation: isolate;
  will-change: transform, opacity;
}

.galaxy.is-enhanced .galaxy-chapter__copy {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  isolation: isolate;
}

.galaxy.is-enhanced .galaxy-chapter__copy::after {
  position: absolute;
  top: -52px;
  right: -64px;
  bottom: -52px;
  left: -64px;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(1, 4, 11, 0.88) 0,
    rgba(1, 4, 11, 0.56) 48%,
    rgba(1, 4, 11, 0.14) 68%,
    transparent 80%
  );
  content: "";
  filter: blur(9px);
  pointer-events: none;
}

.galaxy.is-enhanced .galaxy-chapter--right .galaxy-chapter__copy {
  align-items: flex-end;
  margin-left: auto;
}

.galaxy.is-enhanced .galaxy-chapter--lead {
  top: 22%;
  width: min(76vw, 1050px);
}

.galaxy.is-enhanced .galaxy-chapter--lead .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.galaxy.is-enhanced .galaxy-chapter--lead h2 {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(58px, 8.2vw, 126px);
  line-height: 0.88;
}

.galaxy.is-enhanced .galaxy-chapter--lead .galaxy-chapter__copy > p:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
}

.galaxy.is-enhanced .galaxy-chapter--right {
  right: 7vw;
  left: auto;
  text-align: right;
}

.galaxy.is-enhanced .galaxy-chapter__index {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.galaxy.is-enhanced .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro)::before {
  display: block;
  width: 94px;
  height: 5px;
  margin-bottom: 26px;
  transform: rotate(-8deg);
  background: var(--blue);
  content: "";
}

.galaxy.is-enhanced .galaxy-chapter--right::before {
  margin-left: auto;
  background: var(--yellow) !important;
}

.galaxy.is-enhanced .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro) h3 {
  margin: 16px 0 14px;
  font-size: clamp(68px, 9.2vw, 142px);
  line-height: 0.88;
  white-space: nowrap;
}

.galaxy.is-enhanced
  .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro)
  .galaxy-chapter__copy
  > p:last-child {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.galaxy.is-enhanced .galaxy-chapter--outro {
  top: 50%;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em 0.26em;
  width: 90vw;
  transform: translate3d(-50%, var(--chapter-shift, 34px), 0);
  text-align: center;
  font-size: clamp(32px, 4.6vw, 70px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 0.86;
}

.galaxy.is-enhanced .galaxy-chapter--outro strong {
  color: var(--white);
  font-size: 1.18em;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.galaxy.is-enhanced .galaxy-chapter--outro > small {
  flex-basis: 100%;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.96), 0 0 16px rgba(0, 0, 0, 0.92);
}

.galaxy.is-enhanced .galaxy-chapter--outro > small span {
  display: inline-block;
  padding: 7px 12px;
  background: rgba(1, 4, 11, 0.56);
  box-shadow: 0 0 18px 8px rgba(1, 4, 11, 0.42);
}

.galaxy.is-ready .galaxy-explore-trigger {
  display: inline-grid;
  flex: 0 0 220px;
  flex-basis: 220px;
  place-items: center;
  min-height: 66px;
  margin: 38px calc(50% - 110px) 0;
  padding: 10px 22px 9px;
  border: 0;
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.galaxy.is-ready .galaxy-chapter--outro:not(.is-current) .galaxy-explore-trigger {
  visibility: hidden;
  pointer-events: none;
}

.galaxy-explore-trigger > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.galaxy-explore-trigger > span i {
  display: inline-block;
  margin-left: 0.28em;
  font-style: normal;
  transition: transform 220ms ease;
}

.galaxy-explore-trigger > small {
  margin: 7px 0 0;
  color: rgba(8, 10, 12, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.galaxy-explore-trigger:hover,
.galaxy-explore-trigger:focus-visible {
  background: var(--yellow);
  transform: translateY(-3px);
  outline: none;
}

.galaxy-explore-trigger:hover > span i,
.galaxy-explore-trigger:focus-visible > span i {
  transform: translate(3px, -3px);
}

.galaxy-explore-trigger:active {
  transform: translateY(0) scale(0.98);
}

.galaxy.is-enhanced .galaxy__hud {
  position: absolute;
  top: 112px;
  right: 4vw;
  left: 4vw;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: var(--galaxy-ui-opacity);
  pointer-events: none;
}

.galaxy.is-loading .galaxy__hud span:last-child::after {
  margin-left: 1em;
  color: var(--yellow);
  content: " / LOADING";
}

.galaxy.is-enhanced .galaxy__cue {
  position: absolute;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(1, 4, 11, 0.72);
  color: var(--white);
  opacity: var(--galaxy-cue-opacity);
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.galaxy__cue span {
  padding-left: 0.2em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.galaxy__cue i {
  position: relative;
  display: block;
  width: 26px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.galaxy__cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  content: "";
  animation: galaxy-cue-flow 1.7s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes galaxy-cue-flow {
  to {
    transform: translateX(100%);
  }
}

.galaxy.is-enhanced .galaxy__entry,
.galaxy.is-enhanced .galaxy__exit {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--paper);
  pointer-events: none;
}

.galaxy.is-enhanced .galaxy__entry {
  z-index: 8;
  opacity: var(--galaxy-entry-opacity);
}

.galaxy.is-enhanced .galaxy__exit {
  z-index: 3;
  opacity: var(--galaxy-exit-opacity);
}

/* Free galaxy exploration ----------------------------------------------- */

.galaxy-explorer[hidden] {
  display: none !important;
}

html.galaxy-explore-active,
html.galaxy-explore-active body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.galaxy-explore-active .site-header,
html.galaxy-explore-active .scroll-progress,
html.galaxy-explore-active .skip-link {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.galaxy.is-enhanced.is-exploring {
  position: relative;
  z-index: 1000;
}

.galaxy.is-enhanced.is-exploring .galaxy__sticky {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  contain: none;
  touch-action: none;
}

@supports (height: 100dvh) {
  .galaxy.is-enhanced.is-exploring .galaxy__sticky {
    height: 100dvh;
  }
}

.galaxy.is-exploring .galaxy__chapters,
.galaxy.is-exploring .galaxy__hud,
.galaxy.is-exploring .galaxy__cue,
.galaxy.is-exploring .galaxy__entry,
.galaxy.is-exploring .galaxy__exit {
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none !important;
}

.galaxy.is-exploring .galaxy__canvas {
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.galaxy.is-exploring.is-dragging .galaxy__canvas {
  cursor: grabbing;
}

.galaxy.is-exploring .galaxy__fallback {
  opacity: 0;
}

.galaxy-explorer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  overflow: hidden;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
}

.galaxy.is-exploring .galaxy-explorer {
  opacity: 1;
  animation: galaxy-explorer-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes galaxy-explorer-in {
  from {
    opacity: 0;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.galaxy-explorer__top {
  position: absolute;
  top: max(24px, env(safe-area-inset-top));
  right: max(24px, env(safe-area-inset-right));
  left: max(24px, env(safe-area-inset-left));
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.galaxy-explorer__top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88);
}

.galaxy-explorer__top > p span {
  color: var(--white);
  font-weight: 900;
}

.galaxy-explorer__top > p i {
  font-style: normal;
}

.galaxy-explorer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.galaxy-explorer__actions button {
  min-width: 52px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(1, 4, 11, 0.42);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.galaxy-explorer__actions button:hover,
.galaxy-explorer__actions button:focus-visible {
  border-color: var(--yellow);
  outline: none;
}

.galaxy-explorer__actions .galaxy-explorer__close {
  position: relative;
  width: 48px;
  min-width: 48px;
  padding: 0;
  border-color: var(--white);
  background: var(--white);
}

.galaxy-explorer__close i::before,
.galaxy-explorer__close i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  content: "";
}

.galaxy-explorer__close i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.galaxy-explorer__close i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.galaxy-explorer__objects {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.galaxy-object {
  --object-opacity: 0;
  --object-scale: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 52px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  transform: translate3d(var(--object-x, -200px), var(--object-y, -200px), 0)
    translate(var(--object-anchor-x, -50%), -50%) scale(var(--object-scale));
  border: 0;
  background: transparent;
  color: var(--white);
  opacity: var(--object-opacity);
  cursor: pointer;
  pointer-events: auto;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  transform-origin: center;
  transition: opacity 180ms linear;
  will-change: transform, opacity;
}

.galaxy-object[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.galaxy-object__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: min(58vw, 420px);
  padding: 12px;
  text-align: left;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 1),
    0 0 18px rgba(0, 0, 0, 0.82);
  animation: galaxy-object-float 6.4s ease-in-out infinite alternate;
}

.galaxy-object:nth-child(2n) .galaxy-object__inner {
  animation-delay: -2.1s;
  animation-duration: 7.2s;
}

.galaxy-object:nth-child(3n) .galaxy-object__inner {
  animation-delay: -4.3s;
  animation-duration: 5.8s;
}

@keyframes galaxy-object-float {
  from {
    transform: translate3d(0, -4px, 0);
  }
  to {
    transform: translate3d(0, 5px, 0);
  }
}

.galaxy-object:focus-visible {
  outline: 1px solid var(--yellow);
  outline-offset: 5px;
}

.galaxy-object--service .galaxy-object__inner::before {
  width: 66px;
  height: 4px;
  margin-bottom: 15px;
  transform: rotate(-8deg);
  background: var(--blue);
  content: "";
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.62);
}

.galaxy-object--yellow .galaxy-object__inner::before {
  background: var(--yellow);
}

.galaxy-object--service small {
  color: rgba(255, 255, 255, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.galaxy-object--service strong {
  margin-top: 7px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
  white-space: nowrap;
}

.galaxy-object--service em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.25vw, 18px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.galaxy-object--logo .galaxy-object__inner {
  align-items: center;
  padding: 24px;
}

.galaxy-object--logo .wordmark-crop {
  width: clamp(220px, 21vw, 310px);
}

.galaxy-object--logo .wordmark-crop::before,
.galaxy-object--logo .wordmark-crop::after {
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 54%;
  height: 4px;
  transform: translateY(-50%) rotate(-8deg);
  content: "";
}

.galaxy-object--logo .wordmark-crop::before {
  right: 72%;
  background: var(--blue);
}

.galaxy-object--logo .wordmark-crop::after {
  left: 72%;
  background: var(--yellow);
}

.galaxy-object--logo .wordmark-crop img {
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(2px 0 0 rgba(0, 0, 0, 0.94))
    drop-shadow(-2px 0 0 rgba(0, 0, 0, 0.94))
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.94))
    drop-shadow(0 -2px 0 rgba(0, 0, 0, 0.94))
    drop-shadow(0 0 18px rgba(0, 0, 0, 0.9));
}

.galaxy-object.is-selected .galaxy-object__inner {
  color: var(--yellow);
}

.galaxy-explorer__guide {
  position: absolute;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 24px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.96);
  pointer-events: none;
}

.galaxy-explorer__guide p,
.galaxy-explorer__guide small {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.galaxy-explorer__guide p span {
  margin: 0 0.8em;
  color: var(--yellow);
}

.galaxy-explorer__guide small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.galaxy-explorer__guide-mobile {
  display: none;
}

.contact {
  position: relative;
  z-index: 3;
  min-height: 94vh;
  min-height: 94svh;
  padding: clamp(110px, 13vw, 190px) 0 100px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  isolation: isolate;
}

.contact::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--paper);
  content: "";
}

.contact__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__top > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.contact__title {
  margin: clamp(70px, 10vh, 120px) 0 62px;
  font-size: clamp(74px, 12.1vw, 184px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.77;
}

.contact__title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.email-link {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(20px, 3vw, 45px);
  letter-spacing: -0.035em;
  isolation: isolate;
}

.email-link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--yellow);
  content: "";
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--ink);
}

.email-link:hover::before,
.email-link:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.email-link__label {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.email-link:hover .email-link__label,
.email-link:focus-visible .email-link__label {
  color: var(--ink);
}

.email-link__arrow {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.email-link:hover .email-link__arrow,
.email-link:focus-visible .email-link__arrow {
  background: var(--ink);
  color: var(--white);
}

.email-link__arrow svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 128px;
  margin: 0 auto;
  padding: 20px 0;
  row-gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.site-footer > span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.site-footer > span:nth-child(3) {
  justify-self: end;
}

.model-credit {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.model-credit a {
  color: inherit;
  text-decoration-color: rgba(14, 17, 22, 0.3);
  text-underline-offset: 0.24em;
}

.model-credit:hover,
.model-credit:focus-visible {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card:nth-child(2) {
  transition-delay: 70ms;
}

.service-card:nth-child(3) {
  transition-delay: 140ms;
}

.service-card:nth-child(4) {
  transition-delay: 210ms;
}

a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .opening__title {
    font-size: clamp(25px, 4vw, 44px);
  }

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

  .identity__bottom h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 12px;
  }

  .identity__bottom p:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .identity__bottom p:last-child {
    grid-column: 2;
    grid-row: 2;
  }

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

  .service-card {
    min-height: 310px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(89vw, 620px);
  }

  .site-header {
    top: 14px;
    min-height: 58px;
    padding: 6px 7px 6px 14px;
    background: rgba(247, 249, 251, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .logo-crop--header {
    width: 67px;
  }

  .site-nav a {
    padding: 13px 16px;
  }

  .site-nav span,
  .site-nav a:first-child {
    display: none;
  }

  .opening__content {
    padding: 120px 5vw 150px;
  }

  .opening__symbol {
    width: clamp(74px, 23vw, 96px);
    margin-bottom: 42px;
  }

  .opening__title {
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: clamp(31px, 10.2vw, 58px);
    line-height: 1.03;
    white-space: normal;
  }

  .wordmark-crop {
    width: clamp(190px, 57vw, 260px);
  }

  .opening__ja {
    margin-top: 27px;
    font-size: 13px;
  }

  .opening__meta {
    right: 5.5vw;
    bottom: 25px;
    left: 5.5vw;
  }

  .opening__meta span:last-child {
    display: none;
  }

  .opening__shapes {
    right: -30vw;
    bottom: -25vw;
    width: 105vw;
  }

  .identity__sticky {
    padding: 105px 5.5vw 42px;
  }

  .light-grid {
    background-size: 56px 56px;
  }

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

  .identity__meta span:nth-child(2) {
    display: none;
  }

  .identity.has-scroll-video {
    --video-scroll-distance: 400vh;
  }

  .identity__scroll-cue {
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 9px 13px;
  }

  .logo-crop--main {
    width: min(62vw, 380px);
  }

  .identity__accent {
    height: 7px;
  }

  .identity__accent--blue {
    top: 30%;
    left: -2%;
  }

  .identity__accent--yellow {
    right: 1%;
    bottom: 31%;
  }

  .identity__bottom {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .identity__bottom h2,
  .identity__bottom p:first-child,
  .identity__bottom p:last-child {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .identity__bottom p:last-child {
    line-height: 1.7;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading h2 {
    font-size: clamp(49px, 14vw, 78px);
  }

  .galaxy {
    padding: 120px 0;
  }

  .galaxy__chapters {
    grid-template-columns: 1fr;
  }

  .galaxy-chapter {
    min-height: 230px;
    padding: 22px;
  }

  .galaxy-chapter--lead,
  .galaxy-chapter--outro {
    grid-column: 1;
  }

  .galaxy-chapter--lead {
    min-height: 0;
    padding: 0 0 72px;
  }

  .galaxy-chapter--lead h2 {
    font-size: clamp(38px, 10.4vw, 48px);
    line-height: 0.96;
  }

  .mobile-line-break {
    display: inline;
  }

  .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro) h3 {
    margin-top: 92px;
  }

  .galaxy-chapter--outro {
    flex-wrap: wrap;
    min-height: 250px;
    padding: 42px 22px;
  }

  .galaxy-chapter--outro > small {
    flex-basis: 100%;
    margin: 18px 0 0;
    text-align: center;
  }

  .galaxy.is-enhanced {
    --galaxy-scroll-distance: 440vh;
  }

  .galaxy.is-enhanced .galaxy__hud {
    top: 98px;
    right: 5.5vw;
    left: 5.5vw;
  }

  .galaxy.is-enhanced .galaxy-chapter,
  .galaxy.is-enhanced .galaxy-chapter--right {
    top: 58%;
    right: auto;
    left: 5.5vw;
    width: 89vw;
    text-align: left;
  }

  .galaxy.is-enhanced .galaxy-chapter--lead {
    top: 19%;
    width: 89vw;
  }

  .galaxy.is-enhanced .galaxy-chapter--lead h2 {
    font-size: clamp(45px, 13.5vw, 68px);
    line-height: 0.91;
  }

  .galaxy.is-enhanced .galaxy-chapter--lead .galaxy-chapter__copy > p:last-child {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.7;
  }

  .galaxy.is-enhanced .galaxy-chapter--right::before {
    margin-left: 0;
  }

  .galaxy.is-enhanced .galaxy-chapter--right .galaxy-chapter__copy {
    align-items: flex-start;
    margin-left: 0;
  }

  .galaxy.is-enhanced .galaxy-chapter__copy::after {
    top: -38px;
    right: -30px;
    bottom: -38px;
    left: -30px;
  }

  .galaxy.is-enhanced .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro) h3 {
    font-size: clamp(41px, 13vw, 64px);
  }

  .galaxy.is-enhanced
    .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro)
    .galaxy-chapter__copy
    > p:last-child {
    font-size: clamp(18px, 5vw, 21px);
  }

  .galaxy.is-enhanced .galaxy-chapter--outro {
    top: 48%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 94vw;
    min-height: 0;
    transform: translate3d(-50%, var(--chapter-shift, 34px), 0);
    gap: 0.08em;
    font-size: clamp(30px, 8.5vw, 40px);
    text-align: center;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro > p,
  .galaxy.is-enhanced .galaxy-chapter--outro > strong,
  .galaxy.is-enhanced .galaxy-chapter--outro > small {
    display: block;
    width: auto;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro .galaxy-outro__wordmark {
    display: inline-grid;
    width: auto;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro strong {
    font-size: 1.75em;
    line-height: 0.88;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro > small {
    margin-top: 28px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .galaxy.is-ready .galaxy-explore-trigger {
    flex-basis: auto;
    width: min(76vw, 280px);
    min-height: 60px;
    margin: 30px 0 0;
  }

  .galaxy-explorer__top {
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    left: 16px;
  }

  .galaxy-explorer__top > p {
    max-width: 112px;
    font-size: 8px;
    line-height: 1.5;
  }

  .galaxy-explorer__top > p i {
    display: none;
  }

  .galaxy-explorer__actions {
    gap: 7px;
  }

  .galaxy-explorer__actions button {
    min-width: 46px;
    min-height: 44px;
    padding: 0 12px;
  }

  .galaxy-explorer__actions .galaxy-explorer__close {
    width: 44px;
    min-width: 44px;
  }

  .galaxy-object__inner {
    max-width: 82vw;
    padding: 10px;
  }

  .galaxy-object--service .galaxy-object__inner::before {
    width: 48px;
    height: 3px;
    margin-bottom: 11px;
  }

  .galaxy-object--service small {
    font-size: 9px;
  }

  .galaxy-object--service strong {
    font-size: clamp(27px, 8.8vw, 38px);
  }

  .galaxy-object--service em {
    margin-top: 8px;
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .galaxy-object--logo .galaxy-object__inner {
    padding: 18px;
  }

  .galaxy-object--logo .wordmark-crop {
    width: clamp(150px, 46vw, 190px);
  }

  .galaxy-explorer__guide {
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 14px;
  }

  .galaxy-explorer__guide-desktop {
    display: none;
  }

  .galaxy-explorer__guide-mobile {
    display: block;
  }

  .galaxy-explorer__guide p {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .galaxy-explorer__guide small {
    font-size: 9px;
  }

  .galaxy.is-enhanced .galaxy__cue {
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .service-card {
    min-height: 260px;
    padding: 22px;
  }

  .contact__title {
    font-size: clamp(62px, 17vw, 105px);
  }

  .email-link {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 23px 20px;
    overflow-wrap: anywhere;
    font-size: clamp(17px, 4.7vw, 28px);
  }

  .email-link__label {
    display: none;
  }

  .email-link__arrow {
    width: 48px;
    height: 48px;
  }

  .email-link__arrow svg {
    width: 23px;
  }
}

@supports (height: 100svh) {
  @media (max-width: 720px) {
    .identity.has-scroll-video {
      --video-scroll-distance: 400svh;
    }

    .galaxy.is-enhanced {
      --galaxy-scroll-distance: 440svh;
    }
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .galaxy.is-enhanced .galaxy__hud {
    top: 80px;
  }

  .galaxy.is-enhanced .galaxy__cue {
    display: none;
  }

  .galaxy.is-exploring .galaxy-explorer__guide {
    display: none;
  }

  .galaxy.is-exploring .galaxy-explorer__top {
    top: 12px;
  }

  .galaxy.is-enhanced .galaxy-chapter,
  .galaxy.is-enhanced .galaxy-chapter--right {
    top: 57%;
    right: auto;
    left: 5.5vw;
    width: 89vw;
    text-align: left;
  }

  .galaxy.is-enhanced .galaxy-chapter--lead {
    top: 24%;
  }

  .galaxy.is-enhanced .galaxy-chapter:not(.galaxy-chapter--lead, .galaxy-chapter--outro) h3 {
    font-size: clamp(38px, 8vw, 74px);
  }

  .galaxy.is-enhanced .galaxy-chapter--right::before {
    margin-left: 0;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro {
    top: 25%;
    right: auto;
    left: 50%;
    width: 94vw;
    transform: translate3d(-50%, var(--chapter-shift, 34px), 0);
    font-size: clamp(25px, 5.2vw, 42px);
    text-align: center;
  }

  .galaxy.is-enhanced .galaxy-chapter--outro > small {
    margin-top: 16px;
  }

  .galaxy.is-ready .galaxy-explore-trigger {
    flex-basis: 200px;
    min-height: 54px;
    margin-top: 18px;
  }
}

@media (pointer: coarse) and (max-height: 500px) and (orientation: landscape) {
  .galaxy.is-exploring .galaxy-explorer__guide {
    display: block;
    bottom: 9px;
  }

  .galaxy-explorer__guide-desktop {
    display: none;
  }

  .galaxy-explorer__guide-mobile {
    display: block;
  }

  .galaxy-explorer__guide small {
    display: none;
  }

  .galaxy-object--service strong {
    font-size: clamp(25px, 4.5vw, 34px);
  }

  .galaxy-object--service em {
    display: none;
  }

  .galaxy-object--logo .wordmark-crop {
    width: clamp(145px, 25vw, 190px);
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 218px;
  }

  .contact {
    min-height: 80vh;
    min-height: 80svh;
  }

  .contact__top {
    align-items: flex-start;
    gap: 28px;
  }

  .contact__top > p:last-child {
    max-width: 135px;
    font-size: 10px;
    text-align: right;
  }

  .contact__title {
    margin-top: 90px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 116px;
    padding: 22px 0;
    row-gap: 14px;
  }

  .site-footer > span:nth-child(2) {
    display: none;
  }

  .model-credit {
    grid-column: 1 / -1;
    justify-self: start;
    margin: 0;
    line-height: 1.7;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .opening-step,
  .reveal {
    opacity: 1 !important;
    transform: none;
  }

  .site-header {
    opacity: 1 !important;
  }

  .identity__video {
    display: none !important;
  }

  .identity__scroll-cue i::after {
    transform: none;
    animation: none;
  }

  .galaxy-object__inner {
    animation: none !important;
  }

  .galaxy.is-enhanced {
    --galaxy-scroll-distance: 360vh;
  }

  .intro-visible .opening__wordmark .wordmark-crop {
    animation: opening-logo-bounce-reduced 420ms cubic-bezier(0.2, 0.72, 0.24, 1) 80ms
      both !important;
  }
}

@keyframes opening-logo-bounce-reduced {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  32% {
    transform: translateY(-3px) scale(1.012);
  }

  54% {
    transform: translateY(0) scale(1);
  }

  70% {
    transform: translateY(-1.5px) scale(1.006);
  }
}

@supports (height: 100svh) {
  @media (prefers-reduced-motion: reduce) {
    .galaxy.is-enhanced {
      --galaxy-scroll-distance: 360svh;
    }
  }
}
